Skip to content

Instantly share code, notes, and snippets.

@raimon49
Created April 30, 2013 08:22
Show Gist options
  • Save raimon49/5487357 to your computer and use it in GitHub Desktop.
Save raimon49/5487357 to your computer and use it in GitHub Desktop.
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