CocoaPods 1.8版本后install提示:CDN: trunk URL couldn't be downloaded: ...

Cocoapods 1.8.0版本之后使用CDN分发,直接找到三方库的spec地址,直接下载。 不再全量下载 https://github.com/CocoaPods/Specs.git 到本地。所以速度较之前会提升很大

升级之后的Cocoapods不再需要master repo

pod repo remove master

Podfile不要使用 “source 'https://github.com/CocoaPods/Specs.git'”

如果继续使用master 那么就体现不出升级之后的快感了嘻嘻

那么出现上述问题如何解决呢

场景一:

源换成了下面两种

  • 清华 Gems 镜像站: https://mirror.tuna.tsinghua.edu.cn/help/rubygems/

  • Ruby China 镜像站: https://gems.ruby-china.com

亲测在修改了pods源为国内后 挂代理pod install 失败
然后添加host后 关闭代理 很快就可以install成功

199.232.4.133 raw.githubusercontent.com

场景二:

源没有换过,挂代理,pod repo remove trunk后 pod install

PS 如果还不行 就进入~/.cocoapods/repos 把trunk删除后 重新pod install

https://raw.githubusercontent.com/CocoaPods/Specs/master/Spec

你可能感兴趣的:(CocoaPods 1.8版本后install提示:CDN: trunk URL couldn't be downloaded: ...)