pod setup 卡主不动

  1. 那是因为 淘宝的那个镜像https://ruby.taobao.org/已经不可用了。所以我们现在用最新支持的ruby镜像https://gems.ruby-china.org/
  2. 移除不可用的镜像
gem sources -r https://ruby.taobao.org/ 
不知道有哪些镜像 使用gem sources -l查看
  1. 添加可用镜像
gem sources -a https://gems.ruby-china.org/

以上是更改的ruby的源

为了让CocoaPods更快,下面更改的是CocoaPods索引库的镜像

pod repo remove master
pod repo add master https://gitcafe.com/akuandev/Specs.git
pod repo update

https://gitcafe.com/akuandev/Specs.git 似乎已经搬家了,貌似也不可用了。
第二条命令执行的时候会比较耗时,cd 到 ~/.cocoapods
使用du -sh *命令来查看文件大小
使用第二条命令也可以报一下信息:
[!] To setup the master specs repo, please run pod setup.

这可能是上面那个索引库的镜像有问题吧,把索引库下载下来之后 执行
1. cd 到~/.cocoapods/repo
2. git clone https://gitclub.cn/CocoaPods/Specs.git 到 master 文件夹下
3. 完成之后 pod setup执行

可以点开https://gitclub.cn/CocoaPods/Specs看下是国内的镜像

你可能感兴趣的:(pod setup 卡主不动)