rvm、Ruby、gem、CocoaPods的安装与卸载
安装rvm
shell
curl -fsSL https://get.rvm.io | bash -s stable --ruby --autolibs=enable --auto-dotfiles
rvm -v # 查看版本
安装脚本
shell
/usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"
安装Ruby、gem
shell
ruby -v # 查看ruby版本
rvm list # 查看已安装的ruby版本
rvm list known # 查看可安装的ruby版本
# 改成国内源
gem sources --remove https://rubygems.org/
gem sources -a https://mirrors.aliyun.com/rubygems/
# 升级
sudo gem update --system
rvm install x.x.x 安装指定版本ruby
CocoaPods安装
shell
sudo gem install cocoapods # 安装CocoaPods
pod --version # 查看CocoaPods版本
pod setup # 安装pod
sudo gem update cocoapods # 更新CocoaPods
报错:ERROR: While executing gem ... (NoMethodError) undefined method `satisfied_by?' for nil:NilClass
升级,sudo gem update --system