yarn install总是提示网络失败?

尝试了

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

原谅转自:https://www.cnblogs.com/zinan/p/14754909.html

你可能感兴趣的:(yarn install总是提示网络失败?)