如何使用 CYPRESS_INSTALL_BINARY 安装 Cypress?
How do I install Cypress using CYPRESS_INSTALL_BINARY?
由于公司防火墙,我不能只使用 npm install cypress。
我的下载文件夹中有 cypress.zip
在 windows 命令提示符下,我尝试了以下操作:
CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip npm install cypress
我得到以下错误
'CYPRESS_INSTALL_BINARY' 未被识别为内部或外部命令,
可运行的程序或批处理文件。
或者在 Shell 我明白了-
CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip :术语
'CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip' 未被识别为 cmdlet、函数的名称,
脚本文件,或可运行的程序。检查名称的拼写,或者如果包含路径,请验证该路径是
更正并重试。
在 line:1 char:1
- CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip npm insta ...
-
+ CategoryInfo : ObjectNotFound: (CYPRESS_INSTALL...ads/cypress.zip:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
感谢任何帮助
您可以尝试这些步骤,
set CYPRESS_INSTALL_BINARY=\your\path\to\cypress.x.x.x.zip
npm install cypress
npx cypress open
如果您尝试在 package.json
中添加脚本
"test": "npm run cypressinstallbinary && npx cypress run",
"cypressinstallbinary":
"CYPRESS_INSTALL_BINARY=/path/to/cypress.zip npm install cypress",
由于公司防火墙,我不能只使用 npm install cypress。
我的下载文件夹中有 cypress.zip
在 windows 命令提示符下,我尝试了以下操作: CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip npm install cypress 我得到以下错误
'CYPRESS_INSTALL_BINARY' 未被识别为内部或外部命令, 可运行的程序或批处理文件。
或者在 Shell 我明白了-
CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip :术语 'CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip' 未被识别为 cmdlet、函数的名称, 脚本文件,或可运行的程序。检查名称的拼写,或者如果包含路径,请验证该路径是 更正并重试。 在 line:1 char:1
- CYPRESS_INSTALL_BINARY=/Users/HMiller/Downloads/cypress.zip npm insta ...
-
+ CategoryInfo : ObjectNotFound: (CYPRESS_INSTALL...ads/cypress.zip:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
感谢任何帮助
您可以尝试这些步骤,
set CYPRESS_INSTALL_BINARY=\your\path\to\cypress.x.x.x.zip
npm install cypress
npx cypress open
如果您尝试在 package.json
中添加脚本 "test": "npm run cypressinstallbinary && npx cypress run",
"cypressinstallbinary":
"CYPRESS_INSTALL_BINARY=/path/to/cypress.zip npm install cypress",