方案:使用 CocoaPods 的镜像索引
pod setup
本质就是将https://github.com/CocoaPods/Specs.git的代码下载到
~/.cocoapods/repos/master。
下载慢是因为github的服务器在国外,解决方案就是使用gitcafe和oschina上建立的 CocoaPods 索引库的镜像。
1.清除之前下载的“ ~/.cocoapods/repos/”路径下的master文件
$ pod repo remove master
2.添加国内服务器上的镜像索引库
$ pod repo add master https://gitcafe.com/akuandev/Specs.git
此时会出现如下错误:
[!] To setup the master specs repo, please run pod setup
.
3. 继续执行
$ git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master
4.更新本地cocoapods的spec资源配置信息
$ pod repo update
显示:HEAD is now at a4132a4e9de update README.md
5.安装完成。
6.检测
$ pod search masonry
7.使用
如果不想在pod install 、pod update的时候不想升级specs库 可以使用参数忽略掉:
$ pod install --verbose --no-repo-update
$ pod update --verbose --no-repo-update
网友评论