最近在项目中使用 pod install管理第三方库的时候遇到
CDN: trunk Repo update failed - 8 error(s) 的错误提示,通过询问,发现很多人读遇到了这样的问题,所以专门写出来解决办法
1. 进入到cocoapod的插件内
cd ~/.cocoapods/repos/
然后
git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
2.删除以前的trunk源
pod repo remove trunk
3.在自己的项目中,在Podfile文件的最顶端写上用master源
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
注意,一定要加这句,如果不加,仍然解决不了pod install的错误