Sunday, January 15, 2012

How to install Ruby in your local directory from source code

wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p0.tar.gz
tar -xzvf ruby-1.9.3-p0.tar.gz
cd ruby-1.9.3-p0
./configure --prefix=$HOME
make
make install

1 comment:

Pidong WANG said...

I am very glad to hear that my posts are helpful for you. Thank you.