首次 pod setup 慢解决方案

新电脑上装环境时遇到pod setup才几kb的下载速度 通过如下方法解决:

1、到 https://github.com/CocoaPods/Specs.git网址 把文件clone下来,默认文件夹名字为Specs-master,修改为master
2、前往文件夹 ~/.cocoapods/repos 替换~/.cocoapods/repos 下的master文件夹
3、直接可以正常执行pod install 等命令

出现下面问题的解决办法:

 Unable to add a source with url `https://github.com/CocoaPods/Specs.git` named `master-1`.
You can try adding it manually in `~/.cocoapods/repos` or via `pod repo add`.

原因:master 重复 
最根本的解决方法:1.删除master(位置:~/.cocoapods/repos 下的master文件夹) 
2.pod setup 
3.如果pod setup 不顺利 
采用:Git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master 该过程作用与 pod setup作用相同

 

 


 

你可能感兴趣的:(iOS,--第三方)