pod install 莫名报网络错误,可能是pod 源有问题
解决方法:
1、在Podfile文件中添加源(选一个源来添加,不行就换着试试)
source 'https://github.com/CocoaPods/Specs.git'
source 'https://cdn.cocoapods.org/'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
2、如果还是失败,可能由于历史原因会有多个repo,可以查看cocoapods中的repo,删除多余的repo
pod repo list
如图
QQ20220617-143051.png
3、删除多余的源,比如删除trunk
pod remove trunk
4、删除多余的repo后再进行pod install 或者pod update
- 删掉多余的repo,以后不管是执行 pod setup 还是 pod search 都会快很多
网友评论