环境 ubuntu 14.04
为了安装rails4.2 和 ruby 2.2.2,这是目前稳定的最新版本,需要先安装rvm
sudo apt-get update sudo apt-get install curl \curl -L https://get.rvm.io | bash -s stable --ruby //这一步容易报错,可能是源的原因,多试几次就会成功的,成功后就会把ruby和gem安装好 source /home/wb/.rvm/scripts/rvm //安装好rvm后提示执行一部这个,不然不能使用rvm命令,注意自己的目录 rvm install ruby-2.2.2 //rvm会安装好ruby2.2.1,但是当前最稳定的是2.2.2,直接rvm安装
rvm --default use ruby-2.2.2
接下来把gem源换为淘宝的
gem sources --remove https://rubygems.org/ gem sources -a https://ruby.taobao.org/ gem sources -l bundle config mirror.https://rubygems.org https://ruby.taobao.org sed -i 's!cache.ruby-lang.org/pub/ruby!ruby.taobao.org/mirrors/ruby!' $rvm_path/config/db