CocoaPods升级,升级以后出现bug的解决方法(升级必看!)
命令行更新(安装)步骤【更新步骤】
$ sudo gem update --system // 先更新gem,国内需要切换源
$ gem sources --remove https://rubygems.org/
$ gem sources -a https://ruby.taobao.org/
$ gem sources -l
\*\*\* CURRENT SOURCES \*\*\*
https://ruby.taobao.org/
$ sudo gem install cocoapods // 安装cocoapods
稍等一会儿,其实就更新成功了,终端会输出类似这个的内容
Successfully installed cocoapods-1.0.0
Parsing documentation for cocoapods-1.0.0
1 gem installed
chendeMacBook-Pro:~ chen$
和安装过程是一样的,再次查看版本
$ pod --version
0.39.0
注意:
我现在需要安装Cocoapods 。gem的镜像一景更换为淘宝的了。
执行sudo gem install cocoapods
出现错误:
ERROR: While executing gem ... (Errno::EPERM)
Operation not permitted - /usr/bin/xcodeproj
花费了一些时间最后一句命令:
sudo gem install -n /usr/local/bin cocoapods --pre
非常漂亮success!!!
如下图: