赛普拉斯模块安装失败

时间:2019-10-05 20:39:59

标签: npm install cypress

我尝试安装cypress模块​​

  

npm install cypress --save-dev

cypress.io在Cloudflare上运行,并且阻止了该请求:

URL: https://download.cypress.io/desktop/3.4.1?platform=linux&arch=x64      
Error: Failed downloading the Cypress binary.
Response code: 403
Response message: Forbidden

有什么安装方法吗?

3 个答案:

答案 0 :(得分:0)

尝试通过纱线安装

  

纱线添加柏树--dev

答案 1 :(得分:0)

也不适合我。我遇到了同样的错误。我已经在仓库中创建了新文件夹。

  • 运行npm init -y
  • 运行npm install --save-dev
  • 然后转到 ./node_modules/.bin/cypress打开

繁荣错误。我通过添加解决方法:

{
  "scripts": {
    "test": "cypress open"
  }
}

放入package.json并使用npm run test运行cypress

答案 2 :(得分:0)

尝试

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

然后

npm install cypress --save-dev