-
I am unable to install Percy cli on windows (Node 14.17.6 and npm 6.14.15). Percy CLI version 1.1.0
|
Beta Was this translation helpful? Give feedback.
Answered by
Robdel12
Apr 26, 2022
Replies: 1 comment 1 reply
-
Hey @gluip! This is because when it’s installed locally in a projects dependencies, the binary isn’t added to the windows equivalent of |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gluip
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @gluip! This is because when it’s installed locally in a projects dependencies, the binary isn’t added to the windows equivalent of
$PATH
. You will need to usenpx
(npx percy …
) or call the binary directly (.\node_modules\.bin\percy …
).npx
does the job of looking for a binary that matches the name for you.