美文网首页
Failed to connect to 127.0.0.1 p

Failed to connect to 127.0.0.1 p

作者: Lucky_Blue | 来源:发表于2021-01-23 15:51 被阅读0次

pod install/update失败:Failed to connect to 127.0.0.1 port 1080: Connection refused

image.png

出现这类错误,通常是因为代理发生的,取消代理即可!

1、查看有无相关代理:

git config --global http.proxy

git config --global https.proxy

2、有的话,取消即可

git config --global --unset http.proxy

git config --global --unset https.proxy

3、如果1查询没有,或者2失败,那么打开并编辑隐藏文件.gitconfig

隐藏文件显示:defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

在系统的用户目录下打开.gitconfig文件

删除代理那行数据

4、应该就可以pod install/update

相关文章

网友评论

      本文标题:Failed to connect to 127.0.0.1 p

      本文链接:https://www.haomeiwen.com/subject/xyluzktx.html