cocopods,前面 更新ruy 和更换Ruby镜像我就不说了。。我遇到的问题是在新的iMac上执行put setup 的时候 :(pod setup 是极其漫长,痛苦的等待)
报:
[!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git master --progressCloning into 'master'...remote: Counting objects: 2023466, done.
remote: Compressing objects: 100% (527/527), done.
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal:The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
这个步骤:很多时候 是更新到 95%或者 百分之几十 中间就断了,,,然后网上各种搜寻,什么xcode 路径 什么环境升级,,这些我都试过了。
现在先查看当前镜像:$ gem sources -l ,输出
*** CURRENT SOURCES ***
https://gems.ruby-china.org
查看是否安装成功,如果成功会显示pod的版本
$ pod --version : 输出 1.5.2
然后执行输入下面语句:一下借用《https://blog.csdn.net/love9099/article/details/79738724》
git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master
执行这一条命令速度很快,不需要等待很长时间,10分钟左右。
LoveQideMacBook-Pro:~ loveqi$ git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master
Cloning into '/Users/loveqi/.cocoapods/repos/master'...
remote: Counting objects: 1130099, done.
remote: Total 1130099 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (1130099/1130099), 408.72 MiB | 313.00 KiB/s, done.
Resolving deltas: 100% (563214/563214), done.
Checking out files: 100% (141834/141834), done.
LoveQideMacBook-Pro:~ loveqi$
都不到十分钟,OK了,继续撸。。。
后面 就是 cd +项目 路径 ,在编译podFile 文件,下载第三方..
感谢《https://blog.csdn.net/love9099/article/details/79738724》这个博客的作者..。