美文网首页
2020-01-16 iOS使用清华cocoapods镜像解决p

2020-01-16 iOS使用清华cocoapods镜像解决p

作者: 各种垫底 | 来源:发表于2020-01-16 10:46 被阅读0次

    对于旧版的 CocoaPods 可以使用如下方法使用 tuna 的镜像:

    pod repo remove master && pod repo add master https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git && pod repo update
    

    新版的 CocoaPods 不允许用pod repo add直接添加master库了,但是依然可以:

    cd ~/.cocoapods/repos && pod repo remove master && git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
    

    最后进入自己的工程,在自己工程的podFile第一行加上:

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

    PS: 如果在 pod repo remove master 执行过程中发现执行很慢,可以手动打开 finder 进入相应目录进行删除,然后再执行后续操作

    相关文章

      网友评论

          本文标题:2020-01-16 iOS使用清华cocoapods镜像解决p

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