2023年9月4日 | Leave a comment 问题: 首次执行 pod install 后一直卡住没动静 通过 pod install –verbose 发现是在 Cloning spec repo 时超时 解决: 问题是因为 git clone spec repo 需要花费很长时间, 方法一: 可以试试从国内仓库替代 github 仓库 需要修改 Podfile 指定 source platform :ios, '9.0' #添加下行代码 source 'https://gitee.com/mirrors/CocoaPods-Specs.git' 123 platform :ios, '9.0'#添加下行代码source 'https://gitee.com/mirrors/CocoaPods-Specs.git' 然后重新运行 pod install 如果还不行,试试方法二: 方法二: git clone --depth 1 https://gitee.com/mirrors/CocoaPods-Specs.git ~/.cocoapods/repos/main 1 git clone --depth 1 https://gitee.com/mirrors/CocoaPods-Specs.git ~/.cocoapods/repos/main 再重新运行 pod install 参考: https://guides.cocoapods.org/using/pod-install-vs-update.html