XREAにruby-2.0.0-p0を入れる。時間かかり過ぎて何度か強制終了…。
# Rubyの取得・展開 | |
$ wget ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p0.tar.bz2 | |
$ bunzip2 ruby-2.0.0-p0.tar.bz2 | |
$ tar xf ruby-2.0.0-p0.tar | |
# Rubyのコンパイル・インストール(強制終了した時は再度makeして再開) | |
$ ./configure --prefix=$HOME/ruby-2.0.0-p0 --disable-install-doc --disable-install-rdoc | |
$ make | |
$ make install | |
# インストール完了 | |
$ ~/ruby-2.0.0-p0/bin/ruby -v | |
ruby 2.0.0p0 (2013-02-24) [i686-linux] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment