vue中yarn install报错:info There appears to be trouble with you

问题描述 使用 yarn install 的时候报以下错误info There appears to be trouble with your network connection. Retrying…info There appears to be trouble with your network connection. Retrying…info There appears to be trouble with your network

问题描述

使用 yarn install 的时候报以下错误
info There appears to be trouble with your network connection. Retrying…
info There appears to be trouble with your network connection. Retrying…
info There appears to be trouble with your network connection. Retrying…

解决办法

1、网络连接有问题,检查自己的网络是否正常
2、若网络正常,那问题可能出现在代理连接上
3、控制台输入命令 yarn config get registry,查看当前镜像源是不是淘宝源。
3.1. 如果不是淘宝镜像源,就通过命令 yarn config set registry https://registry.npm.taobao.org 将当前镜像源设置为淘宝镜像
3.2.然后重新执行 yarn install
4、如果以上步骤还未解决,那就重新配置
4.1. 安装好后更换淘宝镜像 yarn config set registry https://registry.npm.taobao.org
4.2. 移除原代理
 yarn config delete proxy
  npm config rm proxy
 npm config rm https-proxy

4.3. 安装 cnpm 镜像并使用代理 registry
  安装 cnpm 镜像
    npm install -g cnpm --registry=https://registry.npm.taobao.org
  使用代理 registry
    npm config set registry https://registry.npm.taobao.org
4.4. npm install
 
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

问题描述 node.js安装依赖包出现 yarn install info No lockfile found 错误,具体内容如下 vue-next git:(fe853a5a) npm install yarn -gchanged 1 package in 679ms vue-next git:(fe853a5a) yarn install yarn install v1.22.17info No lockfile found.$
How do I can get a text of all the cells of the table using testcafe(如何使用 testcafe 获取表格中所有单元格的文本)
Select OK button from N#39;th modal opened in testcafe(从 testcafe 中打开的第 N 个模式中选择 OK 按钮)
How to find element and select by cypress.io with vue.js v-select?(如何使用 vue.js v-select 通过 cypress.io 查找元素并选择?)
Check if test failed in afterEach of Jest(检查测试是否在 Jest 的 afterEach 中失败)
Postman: How to check whether the field is returning null in the Postman automation(Postman:如何在 Postman 自动化中检查字段是否返回 null)