一、更新gem
1.查看gem版本号
gem -v
2.查看ruby源。
gem sources -l
3.替换ruby源(如果是https://gems.ruby-china.com, 则跳过3、4步)
gem sources --remove https://gems.ruby-china.org
gem sources --add https://gems.ruby-china.com
注意是https://gems.ruby-china.com 不是https://gems.ruby-china.org.
4.确保ruby源是https://gems.ruby-china.com
gem sources -l
5.更新gem版本
gem update --system
如果错误:
>ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /Library/Ruby/Gems/2.3.0 directory.
使用:sudo gem update --system
6.打印gem版本号 是否成功
gem -v
二、更新CocoaPods
1.更新CocoaPods
sudo gem install cocoapods
如果错误:
ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /usr/bin directory.
使用:sudo gem install -n /usr/local/bin cocoapods
2.git clone 要比git fetch快许多, 所以在使用cocoapods时尽量避免执行git fetch 参考: http://www.cocoachina.com/ios/20170208/18645.html
解决方案一:
pod installl --no-repo-update --verbose
pod update --no-repo-update --verbose
--verbose的作用就是打印出执行过程中详细的信息.
--no-repo-update的作用就是禁止更新repo, 这样就避免执行了git fetch,从而加快速度。
解决方案二:
进入repos目录下, 通过git clone直接添加master库.
命令如下:
cd ~/.cocoapods/repos
pod repo remove master
git clone https://github.com/CocoaPods/Specs.git master
解决方案三:但是下载版本低,可能不兼容第三方版本
方案三就是为了解决方案二出现clone gitHub 镜像比较慢的问题, 可以换成coding提供的一个镜像源.
命令如下:
cd ~/.cocoapods/repos
pod repo remove master
git clone https://git.coding.net/hging/Specs.git master
另外在自己工程中的Podfile文件加入下面一行描述:
source 'https://git.coding.net/hging/Specs.git'
!!!如果不加这一句话, 它默认还是从github镜像源地址去下载的.
解决方案四:
将下面添加到hosts 里面
192.30.255.112 github.com git
185.31.16.184 github.global.ssl.fastly.net
1.终端输入 : sudo vim /etc/hosts
2.切换英文输入法,输入: i
3.将上面的对应ip添加进去
4.esc
5.shift + :
6. wq 退出保存.
7.再去更新pod
image.png
网友评论