赛普拉斯安装失败

时间:2020-01-21 12:14:21

标签: node.js installation cypress

我在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添加到我的系统环境变量中。但是,我再次收到此错误消息。我该如何解决这个问题?

4 个答案:

答案 0 :(得分:1)

尝试以下步骤:

  1. 在您的计算机上安装git并将其配置为全局。

  2. 删除旧的package.js,然后重新初始化新的软件包。

  3. 再次尝试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。