Ubuntu 12.04LTSが動いているマシンに、Ruby on Railsをインストールしました。Ubuntuでは、Ruby言語も、Ruby on Railsも、パッケージを使って簡単にインストールできます。しかし、パッケージからインストールした場合、利用できるバージョンが制約されることが多いので、今回は自前でインストールすることにしました。
$ curl -L https://get.rvm.io | bash -s stable
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 185 100 185 0 0 123 0 0:00:01 0:00:01 --:--:-- 178
100 10956 100 10956 0 0 4125 0 0:00:02 0:00:02 --:--:-- 12686
Downloading RVM from wayneeseguin branch stable
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 131 100 131 0 0 151 0 --:--:-- --:--:-- --:--:-- 208
100 1244k 100 1244k 0 0 193k 0 0:00:06 0:00:06 --:--:-- 273k
Installing RVM to /home/cond/.rvm/
Adding rvm PATH line to /home/cond/.bashrc /home/cond/.zshrc.
Adding rvm loading line to /home/cond/.bash_profile /home/cond/.zprofile.
# RVM: Shell scripts enabling management of multiple ruby environments.
# RTFM: https://rvm.io/
# HELP: http://webchat.freenode.net/?channels=rvm (#rvm on irc.freenode.net)
# Cheatsheet: http://cheat.errtheblog.com/s/rvm/
# Screencast: http://screencasts.org/episodes/how-to-use-rvm
# In case of any issues read output of 'rvm requirements' and/or 'rvm notes'
Installation of RVM in /home/cond/.rvm/ is almost complete:
* To start using RVM you need to run `source /home/cond/.rvm/scripts/rvm`
in all your open shell windows, in rare cases you need to reopen all shell windows.
# Yoshiyuki Kondo,
#
# Thank you for using RVM!
# I sincerely hope that RVM helps to make your life easier and
# more enjoyable!!!
#
# ~Wayne
$
インストールが完了したら、rvmを有効にするために、次のコマンドを実行します。(実行結果の26〜27行目にTo start using RVM you need to run `source /home/cond/.rvm/scripts/rvm`と表示されています。)