美文网首页
pod setup 慢的解决方案

pod setup 慢的解决方案

作者: wbwu | 来源:发表于2019-01-24 12:58 被阅读0次

    CocoaPods是一个好东西, 通常装完 gem 就能使用命令来安装:

    $ sudo gem install cocoapods   //安装 cocoapods
    $ pod setup   //下载本地 master repos
    

    出现Setting up CocoaPods master repo, 半天没有任何反应.原因无他,因为Great Firewall那堵墙阻挡了cocoapods.org 的连接,下载变得很慢且被监控。我们将官方镜像替换成国内镜像可以加速 repo 创建,可以参考以下说明:http://www.cnblogs.com/yfming/p/5965860.html
    Gitcafe 和 OSChina 都是国内的服务器,可以用它们CocoaPods索引库的镜像:

            Gitcafe: [https://gitcafe.com/akuandev/Specs.git](https://gitcafe.com/akuandev/Specs.git) 
    好像改成
             [https://git.coding.net/CocoaPods/Specs.git](https://git.coding.net/CocoaPods/Specs.git)  
    然后是 
            OSChina: [http://git.oschina.net/akuandev/Specs.git](http://git.oschina.net/akuandev/Specs.git)
    

    因此, 将 $ pod setup 改成下面的两个命令是一样的, 使用任意一个即可, 下载速度取决于你的带宽!!!

    Git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master
    Git clone http://git.oschina.net/akuandev/Specs.git ~/.cocoapods/repos/master
    

    如果这个 Git 仓库不能用,亲测可以通过连接手机4G热点提升速度,我用50M 带宽

    【更新 2019-05-17】

    由于上述两个镜像已经不再维护,因此需要替换成以下命令(任一):

    Git clone https://gitclub.cn/CocoaPods/Specs.git  ~/.cocoapods/repos/master
    或着
    Git clone https://code.aliyun.com/Magi/CocoaPods.git  ~/.cocoapods/repos/master
    

    在命令行输入并回车即可生效!

    相关文章

      网友评论

          本文标题:pod setup 慢的解决方案

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