Created
April 30, 2013 08:22
-
-
Save raimon49/5487357 to your computer and use it in GitHub Desktop.
XREAにruby-2.0.0-p0を入れる。時間かかり過ぎて何度か強制終了…。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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