最近使用Cocoapods,出现如下报错:
CDN: trunk URL couldn't be downloaded: https://cdn.cocoapods.org/deprecated_podspecs.txt, error: Net::OpenTimeout
按照官方文档在 podfile文件中添加source源:
source 'https://github.com/CocoaPods/Specs.git'
podfile文件中添加source源后,pod install和pod update可以正常操作,但是pod search有些库却不正常,此时可以在终端执行
pod repo remove trunk
移除trunk源,执行完就OK了!
参考文章:
1.官方文档
2.Github Issules