yarn install报错info There appears to be trouble with your network connection. Retrying...
时间: 2023-12-13 10:34:19 浏览: 406
当你在使用yarn install时,如果出现以下错误信息:info There appears to be trouble with your network connection. Retrying…,可以尝试以下解决方案:
1. 检查你的网络连接是否正常。
2. 确认你的镜像源是否为淘宝源,可以通过命令 yarn config get registry 查看当前镜像源。
3. 如果不是淘宝镜像源,可以通过命令 yarn config set registry https://registry.npm.taobao.org 将当前镜像源设置为淘宝镜像。
4. 然后重新执行 yarn install 命令即可。
相关问题
yarn install info There appears to be trouble with your network connection. Retrying...
这个错误提示表明yarn install在执行时出现了网络连接问题。以下是两种可能的解决方案:
1. 检查你的网络连接是否正常,确保你可以访问互联网。
2. 将yarn的镜像源设置为淘宝镜像源,可以通过以下步骤实现:
- 在控制台输入命令 yarn config get registry,查看当前镜像源是否为淘宝源。
- 如果不是淘宝镜像源,可以通过命令 yarn config set registry https://registry.npm.taobao.org 将当前镜像源设置为淘宝镜像。
- 然后重新执行 yarn install。
root@LAPTOP-N9L7JODM:~/s6-development-template/development template# yarn yarn install v1.22.19 warning ../package.json: No license field [1/4] Resolving packages... [2/4] Fetching packages... 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... info There appears to be trouble with your network connection. Retrying... error An unexpected error occurred: "https://registry.yarnpkg.com/solc/-/solc-0.6.12.tgz: getaddrinfo EAI_AGAIN registry.yarnpkg.com". info If you think this is a bug, please open a bug report with the information provided in "/root/s6-development-template/development template/yarn-error.log". info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command. 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... info There appears to be trouble with your network connection. Retrying...
根据错误信息显示,你的网络连接出现了问题,导致 Yarn 无法下载依赖包。报错信息中提到了 "EAI_AGAIN registry.yarnpkg.com" 这个错误,可能是由于 DNS 解析问题导致的。
请尝试以下几种方法解决网络连接问题:
1. 检查你的网络连接是否正常,确保你可以访问互联网。
2. 如果你使用代理服务器,请确保代理设置正确,并且可以正常连接到 Yarn 的 registry。
3. 尝试使用其他网络连接,例如切换到其他 Wi-Fi 网络或使用移动数据网络。
4. 如果你的网络连接有防火墙或安全软件,请确保它们不会阻止 Yarn 的网络请求。
5. 检查你的 DNS 设置是否正确,可以尝试切换到其他公共 DNS 服务器。
如果你尝试了上述方法仍然无法解决问题,请提供完整的错误日志以便我更好地帮助你解决该问题。
阅读全文