解决CocoaPods慢的方案(gem和pod repo换源)

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

出现的问题

CDN: trunk URL couldn't be downloaded: https://raw.githubusercontent.com/CocoaPods/Specs/master/S...

 

方法一:可使用脱离trunk方式,打开podfile文件,按照指定旧方式下载

>//source `源地址`

source 'https://github.com/CocoaPods/Specs.git'

方法二:可移除trunk

pod repo remove trunk

 

你可能感兴趣的:(iOS)