CocoaPods索引库的下载

2020-09-23  本文已影响0人  疾风知剑豪

Pod install时需要CocoaPods的索引库,需要到github上去下载,地址是https://github.com/CocoaPods/Specs;

一般是在终端执行命令:pod repo add master https://github.com/CocoaPods/Specs.git,下载后文件默认保存到用户个人的目录\.cocoapods\repo下,是隐藏文件,需要command+Shift+.来显示查看;

这个库比较大,2020.9.23时这版下载的大小有1.02G;

所以有时候因为网络问题可能会导致下载中途失败:

Cloning spec repo `master` from `https://github.com/CocoaPods/Specs.git`

[!] /usr/local/bin/git clone https://github.com/CocoaPods/Specs.git -- master

Cloning into 'master'...

error: RPC failed; result=18, HTTP code = 200

fatal: The remote end hung up unexpectedly

fatal: early EOF

fatal: index-pack failed

这时可以设置:git config --global http.postBuffer 524288000

                         git config --global http.lowSpeedLimit 0

                          git config --global http.lowSpeedTime 999999

另外如果公司网络使用者多,可以用自己的热点下,而且不同的热点效果差很多,感觉总体电信的好一点,希望能对您有帮助。

上一篇下一篇

猜你喜欢

热点阅读