cocoapods 升级到1.8.0+后版本出现的问题
2019-10-08 本文已影响0人
大Z哥
新版本后的cocoapods更换了spec repo的源,由原先的github切换为CDN,旨在加快索引、集成速度,且不占用本地空间。
不过升级到1.8.0+版本后,仍旧出现了一些问题:
比如pod search xxx
的指令会卡住
解决方案:重置repo 的json文件:rm ~/Library/Caches/CocoaPods/search_index.json
- 执行以下指令:
$ cd ~/.cocoapods/repos
$ pod repo remove master
$ pod repo remove trunk
$ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
$ pod repo add master https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git
- 最后进入自己的工程,在自己工程的podFile第一行加上:
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git
'```
PS:pod 实在是太操蛋了!转战Carthage吧,真香!