美文网首页
关于cocoapods源镜像的一些问题

关于cocoapods源镜像的一些问题

作者: Hynsen | 来源:发表于2021-03-30 10:18 被阅读0次

    查看镜像源列表

    $ pod repo list

    修改master镜像源

    $ cd ~/.cocoapods/repos

    $ pod repo remove master

    gitee镜像

    $ git clone https://gitee.com/mirrors/CocoaPods-Specs.git master (此镜像更快速,几m每秒)

    把项目podfile里的source换:

    source 'https://gitee.com/mirrors/CocoaPods-Specs.git master'

    清华镜像

    $ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master

    把项目podfile里的source换:

    source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'

    相关文章

      网友评论

          本文标题:关于cocoapods源镜像的一些问题

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