CentOS下安装rvm、ruby

1、安装的工具包

yum install -y gcc-c++ patch readline readline-devel zlib zlib-devel libyaml-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison sqlite-devel iconv-devel

 2、安装rvm(ruby管理工具)

[root@mail ~]# curl -L get.rvm.io | bash -s stable

 如果遇到以下错误:

Warning, RVM 1.26.0 introduces signed releases and automated check of signatures when GPG software found.
Assuming you trust Michal Papis import the mpapis public key (downloading the signatures).

GPG signature verification failed for '/usr/local/rvm/archives/rvm-1.26.11.tgz' - 'https://github.com/rvm/rvm/releases/download/1.26.11/1.26.11.tar.gz.asc'!
try downloading the signatures:

    gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

or if it fails:

    command curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -

the key can be compared with:

    https://rvm.io/mpapis.asc
    https://keybase.io/mpapis

 那么复制

gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

在控制台运行一次,然后再次运行

[root@mail ~]# curl -L get.rvm.io | bash -s stable

安装成功最后会提示:

# Administrator,
#
#   Thank you for using RVM!
#   We sincerely hope that RVM helps to make your life easier and more enjoyable!!!
#
# ~Wayne, Michal & team.

3、运行以下命令:

echo "source /etc/profile.d/rvm.sh" >> ~/.bashrc && source /etc/profile.d/rvm.sh

4、那么接下来可以使用rvm来安装ruby了

 4.1、使用

rvm list known

 列出rvm知道的ruby版本,那么在这里就可以看到有什么版本可以安装了。在这里我选择ruby-2.2.1

rvm install ruby-2.2.1

 rvm可以帮助我们将ruby所依赖的包也一起安装进来。

 4.2、切换要使用的ruby版本

rvm use 2.2.1

 4.3、输出变量参数

 echo "export rvm_max_time_flag=20" >> ~/.rvmrc

5、检查gem sources的链接地址。如果是https://rubygems.org/,那么要移除掉。
换成http://rubygems.org/或http://ruby.taobao.org

gem sources --remove https://rubygems.org/
gem sources -a http://ruby.taobao.org

安装配置完成。

猜你喜欢

转载自conkeyn.iteye.com/blog/2229244