美文网首页
Cocoapods 另类安装/配置方式 100%成功

Cocoapods 另类安装/配置方式 100%成功

作者: iWe | 来源:发表于2017-08-14 16:10 被阅读24次

    1. 安装Cocoapods

    $ sudo gem install cocoapods
    $ pod setup
    
    备注:苹果系统升级 OSX EL Capitan(10.11) 后改为:
    $ sudo gem install -n /usr/local/bin cocoapods
    

    2.更换ruby源

    $ gem sources —remove https://rubygems.org/
    $ gem sources -a https://ruby.taobao.org/
    $ gem sources -l
    
    备注
    -l 查看当前源列表
    官方源:https://github.com/CocoaPods/Specs.git
    默认源:https://rubygems.org/

    3.删除所有master

    $ pod repo remove master
    

    4.添加新的master地址

    $ pod repo add master https://gitclub.cn/CocoaPods/Specs.git
    
    可能会警告以下内容, 无视掉直接进行下一步
    [!] To setup the master specs repo, please run `pod setup`.
    

    5.clone master 到本地

    $ git clone https://gitclub.cn/CocoaPods/Specs.git  ~/.cocoapods/repos/master
    
    备注:需要花点时间, 耐心等待

    6.执行搜索命令

    $ pod search "IWAlert"
    
    备注:搜索命令会初始化master的搜索索引,仅第一次需要

    相关文章

      网友评论

          本文标题:Cocoapods 另类安装/配置方式 100%成功

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