美文网首页
cocoapods更新篇2

cocoapods更新篇2

作者: HeavenWong | 来源:发表于2019-08-17 23:02 被阅读0次

    要定期更新的

    一、更新gem ruby

    sudo gem update --system
    

    二、换ruby镜像

    • 什么原因就不说两, 淘宝镜像也早不支持了, 用这个https://gems.ruby-china.com
    gem sources --remove https://rubygems.org/ 
    gem sources -a https://gems.ruby-china.com
    
    • 查看是否替换成功
    gem sources
    
    • 成功的输出结果


      成功的输出结果

    三、安装cocoapods

    sudo gem install -n /usr/local/bin cocoapods
    

    划重点

    四、更换cocoapods 托管地址

    操作正确步骤: 1 删 2 加

    pod repo remove master
    pod repo add master https://gitclub.cn/CocoaPods/Specs.git
    
    • 查看是否替换成功
    pod repo
    
    • 成功的输出结果,URL是托管地址,Path是本地库的路径。


      成功的输出结果

    五、创建本地库

    pod setup
    

    敲重点

    若setup失败

    • setup失败, 或者setup还是托管地址https://github.com/CocoaPods/Specs.git
    • 那就重复步骤四,查看repo地址, 执行结果0 repo就是对的
    pod repo
    
    • 如果不是0 repo,就前往文件夹删除master文件/Users/(你的用户名)/.cocoapods/repos/master

    接着执行创建本地库

    git clone https://gitclub.cn/CocoaPods/Specs.git ~/.cocoapods/repos/master
    
    • 等待结束 就可以正常使用了。

    相关文章

      网友评论

          本文标题:cocoapods更新篇2

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