1、在安装cocoapods时候,pod setup停留的时间太长了,这时候就建议使用国内的景象,速度妥妥的快的不行啊,哈哈哈
我使用的是清华的镜像,详细步骤看这个网址CocoaPods 镜像使用帮助
2、由于项目是用CocoaPods管理,CocoaPods 1.8将CDN切换为默认的spec repo源,并附带一些增强功能!CDN支持最初是在1.7版本中引入的,最终在1.7.2中完成。 它旨在大大加快初始设置和依赖性分析。
在使用的时候出现
[!] CDN: trunk Repo update failed - 7 error(s):
CDN: trunk URL couldn't be downloaded:
按照官方文档 podfile文件中添加source源:source 'https://github.com/CocoaPods/Specs.git'
podfile文件中添加source源后,pod install
和pod update
可以正常操作,但是pod search
有些库却不正常。
因为我使用的是清华的,所以我这里要写清华提供的方法
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
解决办法:
1. podfile文件中指定source源为master:
source 'https://github.com/CocoaPods/Specs.git'
或者
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
看自己的导入源吧而定
2.执行pod repo remove trunk
移除trunk源
执行完后,pod search
就都正常了!
来源:CSDN
作者:坤宇
链接:https://blog.csdn.net/ziyuzhiye/article/details/103594361