1. 先卸载已存在版本
//1. 卸载 cocoapods
sudo gem uninstall cocoapods
//2. 查看相关内容
gem list --local | grep cocoapods
//3. 卸载2中所有内容
sudo gem uninstall cocoapods-core cocoapods-
2. 安装
安装步骤:XCode -> home-brew ->rvm ->ruby ->cocoapods
安装RVM
// 1. 在线安装
curl -L https://get.rvm.io | bash -s stable
// 2. 载入
source ~/.rvm/scripts/rvm
// 3. 检查
rvm -v
利用RVM安装Ruby环境
// 1. 列出ruby(q键退出)
rvm list known
// 2. 安装指定版本(如2.3.6)
rvm install ruby 2.3.6
// 3. 查看已经安装的列表
rvm list
// 4. 卸载指定版本
rvm remove 2.2.2
// 5. 设置ruby默认版本
rvm 2.3.6 --default
// 6. 检查
ruby -v
Ruby切换国内镜像
// 1. 查看当前镜像
gem sources -l
// 2. 移除某个镜像
gem sources --remove 镜像地址
// 3. 添加国内镜像(https://gems.ruby-china.com/)
gem sources --add https://gems.ruby-china.com/
// 4. 更新
sudo gem update --system
安装Cocoapods
- 10.11之前
sudo gem install cocoapods
- 10.11 之后
sudo gem install -n /usr/local/bin cocoapods
sudo chmod +rx /usr/local/bin
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
pod setup