红联Linux门户
Linux帮助

linux下安装ruby版本管理器RVM

发布时间:2017-02-03 10:04:53来源:blog.csdn.net/mydo作者:大熊猫侯佩
这里以ubuntu为例。
 
直接以如下命令行安装可能会不成功,因为rvm.io站点有时会不行:
curl -sSL https://get.rvm.io | bash -s stable
#或者
curl -L https://rvm.io | bash -s stable
 
没关系,我们可以直接从Git仓库里下载并安装RVM,首先本地新建文件夹rvm:
mkdir rvm
cd rvm
 
然后依次执行如下命令:
# Install mpapis public key (might need `gpg2` and or `sudo`)
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
# Download the installer
curl -O https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer
curl -O https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer.asc
# Verify the installer signature (might need `gpg2`), and if it validates...
gpg --verify rvm-installer.asc &&
# Run the installer
bash rvm-installer stable
 
如果gpg –keyserver命令失败,用如下命令代替:
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
 
如果不出什么错误,RVM已经安装到系统上了,可以使用了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28117.html