美文网首页
Cocoapods升级到v1.8后pod trunk发生异常解决

Cocoapods升级到v1.8后pod trunk发生异常解决

作者: 阿栋先森 | 来源:发表于2020-05-11 15:24 被阅读0次
    [!] CDN: trunk Repo update failed - 39 error(s): CDN: trunk URL couldn't be downloaded
    

    cocoapods 在1.8版本提出了 cdn 方案 ,然而并不好用,不如直接替换国内镜像

    对于旧版的 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
    

    清华镜像网站

    如果删除主分支较慢可以直接cd ~/.cocoapods/repos ,手动删除目录
    如果git下载过慢,可以通过手机4g热点,亲测比较快

    在工程podfile第一行加入

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

    最后再执行

    pod update
    

    相关文章

      网友评论

          本文标题:Cocoapods升级到v1.8后pod trunk发生异常解决

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