无法在Windows 10上安装Cypress

时间:2020-08-31 08:15:38

标签: node.js cypress

screenshot of error log

上面是我遇到的问题的图片。我已经安装了Node.js并运行npm install命令在cypress文件夹中创建package.json文件,但是仍然无法安装它。

2 个答案:

答案 0 :(得分:0)

尝试一下

npm config set registry http://registry.npmjs.org/

,以便npm请求http URL而不是https。

,然后尝试相同的npm install命令

执行npm cache clean.

清除缓存

注意可能会导致安全问题,因为此处未使用https。我不建议在生产中使用它。

如果上述方法不起作用:-

1)ping registry.npmjs.org

2)我能够通过运行以下命令来解决此问题:

npm config delete proxy 
npm config delete http-proxy
npm config delete https-proxy

如果该方法不起作用,禁用路由器的防火墙将立即解决该问题。

ETIMEDOUT Error while installing Node packages on Windows

答案 1 :(得分:0)

请按照以下步骤进行修复,

  1. npm配置设置为false

  2. npm缓存清理--force

  3. npm install cypress

希望它可以解决您的安装问题。