gem换源
$ gem sources --remove https://rubygems.org/ # 移除默认源
$ gem sources -a https://gems.ruby-china.com/ # 添加Ruby China镜像
$ gem sources -l
确保只有gems.ruby-china.org
源
pod repo换源
$ pod repo
默认是GitHub
源
master
- Type: git (master)
- URL: https://github.com/CocoaPods/Specs.git
- Path: /Users/cheng/.cocoapods/repos/master
1 repo
我们把它换成清华tuna
源
对于旧版的 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库了。如果执行pod repo add
出现以下错误
那么使用以下办法
$ pod repo remove master
$ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos/master
另外,如果Podfile
文件中有
source 'https://github.com/CocoaPods/Specs.git'
也需要把它换成repo的源,否则依然是使用GitHub源
上面的步骤都完成后,即可使用
$ pod install
$ pod update