cocoapods安装报错

前言
最近更新cocoapods失败后一直安装不成功, 我尝试了各种方法, 最终安装成功, 在这里给大家分享一下安装过程中报的错和解决办法.在这里不介绍cocoapods的安装步骤.

错误1:

[!] /usr/bin/Gitclone 'https://github.com/CocoaPods/Specs.git' master --depth=1
Cloning into 'master'...
error: RPC failed; result=56, HTTP code = 0
fatal: The remote end hung up unexpectedly

解决办法:

终端输入如下命令:
sudo rm -fr ~/.cocoapods/repos/master 
git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master 

然后在执行命令:( 1048576000 =1000×1024×1024, 也就是1000M, 最新的cocoapods 900多M的大小)
git config http.postBuffer 1048576000 

大概20分钟左右安装成功, 可是执行命令pod search fmdb报错

错误2:

[!] Unable to find a pod with name, author, summary, or description matching fmdb

然后我们在终端输入命令:
rm ~/Library/Caches/CocoaPods/search_index.json 

出现:
Creating search index for spec repo 'master' 等待大概5分钟左右会出现 Creating search index for spec repo 'master' .. done !表示完成 这个时候再输入查询命令查到第三方类库!大功告成!

总结:

更新找这个cocoapods用了我不少的时间, 最终解决这个问题,也是挺有成就感的, 写下这骗文章希望能给需要的你一点帮助!

你可能感兴趣的:(cocoapods安装报错)