pod setup命令失败解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pod setup命令失败解决方法相关的知识,希望对你有一定的参考价值。

最近运行pod setup出现以下问题:

remote: Compressing objects: 100% (34/34), done.error: RPC failed; curl 56 SSLRead() return error -3613.00 KiB/sfatal: The remote end hung up unexpectedlyfatal: early EOFfatal: index-pack failed

我们知道 cocoapods 的 sepcs 文件是放在这个目录里面

~/.cocoapods/repos

所以可以直接 cd 到该目录下然后运行命令:

git clone https://github.com/CocoaPods/Specs.git master
Cloning into ‘master‘...remote: Counting objects: 894306, done.remote: Compressing objects: 100% (56/56), done.
^Cceiving objects:   6% (53659/894306), 10.39 MiB | 216.00 KiB/s
...

然后会发现clone 的文件很大,由于速度也很慢,一不小心就失败了。

其实我们无需全部 clone 下来,可以只 clone 最近一个 commit 的全部代码就可以了。

git clone --depth=1  https://github.com/CocoaPods/Specs.git master
Cloning into ‘master‘...remote: Counting objects: 261047, done.remote: Compressing objects: 100% (179891/179891), done.remote: Total 261047 (delta 44498), reused 253721 (delta 44409), pack-reused 0Receiving objects: 100% (261047/261047), 44.76 MiB | 124.00 KiB/s, done.
Resolving deltas: 100% (44498/44498), done.
Checking connectivity... done.
Checking out files: 100% (118515/118515), done.

不用多久就 clone 成功了,这时候就直接可以使用pod install 最新版本的 library 了。


本文出自 “ZhuoKing” 博客,请务必保留此出处http://9951038.blog.51cto.com/9941038/1942047

以上是关于pod setup命令失败解决方法的主要内容,如果未能解决你的问题,请参考以下文章

pod setup 在“设置 CocoaPods 主仓库”时失败

Xcode:Pod 安装后构建失败(错误:链接器命令失败,退出代码 1)

使用CocoaPods卡在了"pod setup"界面的解决办法

在终端中运行“pod setup”时,它失败并出现以下错误 -

使用 pod install 后出现 Swift 错误(clang:错误:链接器命令失败,退出代码为 1)

解决 CocoaPods 命令 pod install 安装 github.com 上的包非常缓慢或者失败