美文网首页
Error installing CocoaLumberjack

Error installing CocoaLumberjack

作者: 一本大书 | 来源:发表于2019-04-23 21:12 被阅读0次

    今天在 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

    相关文章

      网友评论

          本文标题:Error installing CocoaLumberjack

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