最近pod install时, 一直出现CDN: trunk URL couldn't be downloaded:
错误,
搜了下网上的解决方法, 说是CDN切换为默认的spec repo源,执行pod repo remove trunk
移除trunk源即可。
但执行后pod install
依然报错!
经试验,以下解决方法可:
- Podfile文件添加source源:
source 'https://github.com/CocoaPods/Specs.git'
-
执行
pod repo remove trunk
移除trunk源 -
执行
pod install
网友评论