Ubuntu安装RubyGems
更新系统
更新软件的源文件并进行更新
aptitude update
aptitude -y upgrade
安装RVM
RVM (Ruby Version Manager)能够帮助开发者快速入手ruby开发,它能够允许同时使用多版本的ruby.通过以下命令安装:
curl -L get.rvm.io | bash -s stable
如果出现以下问题:
gpg: Can’t check signature: public key not found
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:
sudo gpg –keyserver hkp://keys.gnupg.net –recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
or if it fails:
command curl -sSL https://rvm.io/mpapis.asc | sudo gpg –import -
the key can be compared with:
https://rvm.io/mpapis.asc
https://keybase.io/mpapis
错误显示:GPG签名认证失败,尝试通过执行以下命令下载签名:
sudo gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
如果以上语句执行失败,则执行:
curl -sSL https://rvm.io/mpapis.asc | sudo gpg --import -
解决前面问题后,再次下载并添加环境变量:
curl -L get.rvm.io | bash -s stable
source /etc/profile.d/rvm.sh
如果/etc/profile.d/rvm.sh文件并没有找到,则可能是没有前面问题尚未解决好,或者没有重新下载.
安装Ruby
尝试下载安装2.1.0版本:
rvm reload
rvm install 2.1.0
如果出现以下问题:
There has been error while updating ‘apt-get’, please give it some time and try again later.
For 404 errors check your sources configured in:
/etc/apt/sources.list
/etc/apt/sources.list.d/*.list
该问题是由于,rvm当发现运行apt-get update出现问题的时候,就拒绝工作,所以需要rvm正常工作,则需要保证apt-get update中不会出现任何错误.解决方法是:运行apt-get update,查看里面出现的error,在source.list中删除对应错误的源库,再重新执行update,直到里面不出现error为止
顺便提一下,如果apt-get update出现Hash sum mismatch类似的问题,可以尝试换 /etc/apt/source.list的源,可以参考:Ubuntu源列表.如果换源列表仍不行,可能是由于本地缓存导致了文件不同步,hash值不一致,只需要删除 /var/lib/apt/lists/文件夹下所有文件即可.