我在Windows 10上安装了nodejs和npm。比起我尝试通过npm install cypress --save-dev
安装cypress并得到以下错误:
> node index.js --exec install
The command "node" is either misspelled or
could not be found.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! cypress@3.8.2 postinstall: `node index.js --exec install`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the cypress@3.8.2 postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\U\AppData\Roaming\npm-cache\_logs\2020-01-21T11_05_01_566Z-debug.log
此后,我将路径%USERPROFILE%\AppData\Local\Temp
添加到我的系统环境变量中。但是,我再次收到此错误消息。我该如何解决这个问题?
答案 0 :(得分:1)
尝试以下步骤:
在您的计算机上安装git并将其配置为全局。
删除旧的package.js,然后重新初始化新的软件包。
再次尝试cypress安装命令
答案 1 :(得分:0)
将其下载到任何目录,如果您的代理配置正确且互联网速度良好,则可以下载。它会在执行 npm install 时下载
wget https://cdn.cypress.io/desktop/7.6.0/win32-x64/cypress.zip
提供邮编位置
CYPRESS_INSTALL_BINARY=~/Downloads/cypress.zip npm install cypress
答案 2 :(得分:0)
尝试安装以前的版本但显式:npm install cypress@8.1.0 --save-dev
答案 3 :(得分:-2)
删除 package.json。
再次通过 npm init
重新构建包。
使用 npm install cypress --save-dev
再次安装 Cypress。