我正在尝试安装我的可可豆荚 做完所有事情并安装后我得到了错误:
[!] Unable to add a source with url git@github.com:CocoaPods/Specs.git named master-1
为了解决我尝试过的错误:
cd ~/.cocoapods/repos
git clone https://github.com/CocoaPods/Specs.git master
然后我得到了这个我不知道如何处理的错误:
remote: Counting objects: 854549, done.
remote: Compressing objects: 100% (3453/3453), done.
error: RPC failed; curl 56 SSLRead() return error -9806 MiB/s
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
答案 0 :(得分:4)
git clone
确实是issue 4293推荐的内容。
但是如果克隆失败并显示“RPC failed; result=56
”错误消息,请检查您的git缓冲区:
git config --global http.postBuffer 2M
然后再次尝试git clone
。
如果没有,请调查:
GIT_CURL_VERBOSE=1 git clone https://github.com/CocoaPods/Specs.git
最后,如果https不想合作,请尝试使用ssh url:
cd ~/.cocoapods/repos
git clone git@github.com:CocoaPods/Specs.git
答案 1 :(得分:0)
第一次连续尝试3次 pod设置,第二次失败。第三次有效。即使第三次失败再次运行并且不断打开网页或流式传输在线视频,这也行得通。我已经测试了两次,一次是在10.12sieraa
答案 2 :(得分:0)
我收到了相同的错误消息。就我而言,我通过更改为http解决了它。
git clone https://github.com/CocoaPods/Specs.git master