尝试了
yarn config delete proxy
yarn config set registry https://registry.npm.taobao.org
都无法解决。
看到一篇文章 ,发现竟然可以:
参考网址:https://stackoverflow.com/questions/51508364/yarn-there-appears-to-be-trouble-with-your-network-connection-retrying
如果使用的是国内源,那么有可能是因为包体积太大导致网络超时所致。
对应的解决方法为,指定网络超时时间
yarn install --network-timeout=30000
网友评论