本文主要是介绍There appears to be trouble with your network connection. Retrying,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一直在报如上错误,试了很多办法,比如删掉yarn.lock
,yarn cache clean
,删掉node_modules
,rm proxy
等等都没有用
甚至于重启电脑,然而并没有什么用
突然间想到,我用了clash for window
所以想了下,应该要设置proxy
先查电脑的ip
cmd
--> ipconfig
然后设置proxy
yarn config set proxy http://192.168.110.119:7890yarn config set https-proxy http://192.168.110.119:7890
yarn install
不再超时了,也不再报错了
后来回想了一下,之前也遇到过类似的问题(https://blog.csdn.net/weixin_41886421/article/details/134864070)
故此问题可以不止一种解法,还是要特定事情特地分析,最好知道其原理及原因,对症下药。
纸上得来终觉浅,绝知此事要躬行,大家共勉
这篇关于There appears to be trouble with your network connection. Retrying的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!