解决Failed to connect to 127.0.0.1 port 1080: Connection refused 报错

原文:https://blog.csdn.net/sundaysme/article/details/100784830

企业微信截图_2072f19e-5559-41d4-bd13-874068d24477.png

尝试了各种办法都没有解决,一直报这个端口代理的问题,看到网上有一个解决办法

第一步

查询是否使用了代理:

git config --global http.proxy

第二步

取消代理

git config --global --unset http.proxy

然而我试了,没有效果.

现在我来说说下面的方法,这个解决了问题

第一步

在终端输入

defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

这行命令可以显示电脑的隐形文件

第二步

在Finder里面个人账号的文件夹里找到gitconfig这个隐藏文件,右击打开,然后把里面的代理proxy整行删掉

第三步

回到终端,再次执行pod setup,这个时候你就会神奇的发现,问题解决了,希望对同样有这种问题的人有所帮助
企业微信截图_2072f19e-5559-41d4-bd13-874068d24477.png

你可能感兴趣的:(解决Failed to connect to 127.0.0.1 port 1080: Connection refused 报错)