今天在 pod install
的时候报错了:
[!] Error installing CocoaLumberjack
[!] /usr/local/bin/git clone https://github.com/CocoaLumberjack/CocoaLumberjack.git /var/folders/t8/wky5vn1n4398lphn2ghcnxyc0000gp/T/d20190423-632-9klmso --template= --single-branch --depth 1 --branch 3.5.2
Cloning into '/var/folders/t8/wky5vn1n4398lphn2ghcnxyc0000gp/T/d20190423-632-9klmso'...
fatal: unable to access 'https://github.com/CocoaLumberjack/CocoaLumberjack.git/': Failed to connect to localhost port 1080: Connection refused
注意看到最后面报错
Failed to connect to localhost port 1080: Connection refused
使用了本地代理,可能是因为我的项目是rn项目,在跑项目的时候自动启动了本地的服务,也就是走了本地代理。
解决方法:
查询是否使用代理:git config --global http.proxy
取消代理:git config --global --unset http.proxy
重新 pod install
网友评论