Cocoapods升级到v1.8后pod trunk发生异常解决
2020-05-11 本文已影响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