美文网首页
pod setup 慢的解决方案

pod setup 慢的解决方案

作者: wbwu | 来源:发表于2018-11-05 19:39 被阅读0次

CocoaPods是一个好东西, 通常装完 gem 就能使用命令来安装: 

```$ sudo gem install cocoapods   //安装 cocoapods

$ pod setup   //下载本地 master repos```

出现Setting up CocoaPods master repo, 半天没有任何反应.原因无他,因为Great Firewall那堵墙阻挡了cocoapods.org 的连接,下载变得很慢且被监控. Gitcafe 和 OSChina 都是国内的服务器,可以用它们CocoaPods索引库的镜像:Gitcafe: https://gitcafe.com/akuandev/Specs.git 好像改成 https://git.coding.net/CocoaPods/Specs.git 这个了, 然后是 OSChina:  http://git.oschina.net/akuandev/Specs.git

因此, 将 $ pod setup 改成下面的两个命令是一样的, 使用任意一个即可, 下载速度取决于你的带宽!!!

Git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master

Git clone http://git.oschina.net/akuandev/Specs.git ~/.cocoapods/repos/master

如果这个 Git 仓库不能用,亲测可以通过连接手机4G热点提升速度,我用50M 带宽

【更新 20190517】

镜像源https://git.coding.net/CocoaPods/Specs.git 停止更新了,现在使用以下源:

https://code.aliyun.com/Magi/CocoaPods.git

https://gitclub.cn/CocoaPods/Specs.git (推荐)

Git clone https://gitclub.cn/CocoaPods/Specs.git ~/.cocoapods/repos/master

或者

Git clone https://code.aliyun.com/Magi/CocoaPods.git ~/.cocoapods/repos/master

在命令行输入上述任一条命令即可。

相关文章

网友评论

      本文标题:pod setup 慢的解决方案

      本文链接:https://www.haomeiwen.com/subject/bpbkxqtx.html