cocoapods1.8版本以后,默认使用cdn的方式索引repos,使用pod install的时候会出现
https://raw.githubusercontent.com **** Response: Timeout was reached
的问题,主要的原因,是因为dns服务器无法找到对应的主机IP地址,简单的解决办法就是 直接指定 域名所对应的IP地址。
打开https://IPAddress.com
,查找域名对应的IP地址。
然后在
本地hosts
文件中添加对应的IP,
199.232.68.133 raw.githubusercontent.com
然后执行pod repo update
即可。