解决使用cocoapod下载第三方文件下载不下来或者是下载速度很慢出现443时处理:
前往文件夹,/private/etc 的目录下,找到hosts文件删除所有关于GitHub.com 的文件
一些cocoapods相关的只是点:
sudo gem uninstall cocoa pods
gem list --local | grep cocoapods
打开cocoapods位置
open ~/.cocoapods/repos/trunk
//查看pod源
pod repo list
pod repo remove trunk
克隆
git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
卸载cocoapod
sudo gem uninstall cocoapods
// 安装最新版cocoapods
sudo gem install cocoapods --pre
// 移除本地master
sudo rm -fr ~/.cocoapods/repos/master
// 移除本地缓存
sudo rm -fr ~/Library/Caches/CocoaPods/
// 重新setup,如果很慢可使用问题1的解决方法(git clone)
pod setup --verbose
// 移除trunk
pod repo remove trunk
官方的repo地址
git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
rm -rf ~/.cocoapods
mkdir -p ~/.cocoapods/repos
cd ~/.cocoapods/repos
git clone https://github.com/CocoaPods/Specs.git(重点是你要能下载成功,使用手机热点,值得推荐)
安装完之后不能用重新
sudo gem install -n /usr/local/bin cocoapods
然后关掉终端重新pod search
有没有使用pod repo list查看源
网友评论