在使用cocoapods 进行update 或者 install的时候,原因在于每次当执行命令时会去获取更新的pod specs,
每次速度都不是很理想,参考网络上的办法,给出2个途径,可以结合使用
方法一:不检查CocoaPods specs更新
以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。
终端 加参数的命令如下 :
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update
方法二:使用CocoaPods specs国内镜像
使用国内对github上的specs仓库镜像, 现在每10分钟会进行一次同步 基本和主仓库保持一致
国内Specs
清华大学镜像
https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git
上海大学镜像
https://mirrors.shu.edu.cn/CocoaPods(仅HTTP/HTTPS访问,不支持git拉取)
https://mirrors.shu.edu.cn/mgit/Specs(仅git访问)
https://git.shuosc.org/CocoaPods/Specs(均支持)
新版的 CocoaPods 不允许用pod repo add直接添加master库了,但是依然可以:
1 cd ~/.cocoapods/repos
2 pod repo remove master
3 git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
pod repo update
最后进入自己的工程,在自己工程的podFile第一行加上:
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
、、、
CocoaPods 托管在 GitHub 上即使翻墙速度还是太慢了,在Coding.net中发现一个国内镜像,15分钟和官方同步一次。
使用方法:
```
pod repo remove master
pod repo add masterhttps://git.coding.net/jasper/CocoaPods.git
pod repo update
pod setup
```
切回官方源
```
pod repo remove master
pod repo add masterhttps://github.com/CocoaPods/Specs.git
pod repo update
pod setup
```
、、、
# 最后进入自己的工程,在自己工程的podFile第一行加上
sources 'https://github.com/CocoaPods/Specs'