大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
最近运行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 了。