美文网首页iOS一点通
Cocoapod库更新失败或新库导不下来

Cocoapod库更新失败或新库导不下来

作者: 氺_氺 | 来源:发表于2022-02-12 10:12 被阅读0次

    2022春节之后,发现pod install 新库拉取不下来,老是报错:

    fatal: unable to access 'https://hub.fastgit.org/...': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443

    执行 pod repo update 也是报同样的问题;

    清理缓存,网络翻墙,重装pod,都是无法解决问题;

    后来仔细看了报错内容,注意到了https://hub.fastgit.org这个地址,这个网址我从来没配置过,查了一下,是一个国内常用的github镜像地址,怀疑是镜像服务器出问题了;

    git config --global --list 看到了以下一行配置:

    [url "https://hub.fastgit.org"]     insteadOf = https://github.com

    找到本地git的配置文件: ~/.gitconfig 将上述的那行配置删除。

    重新试了一下pod install,问题得到解决;


    在google上也有人反馈说https://hub.fastgit.org镜像好像是暂时挂了,我没有去尝试换其他的镜像地址,只是暂时以上述的方式先解决问题,等过这段时间忙忘了,再仔细研究研究,后续再更新~

    相关文章

      网友评论

        本文标题:Cocoapod库更新失败或新库导不下来

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