-
-
Save iDoMeteor/99230e26d82875b77da9bc50e8acdd32 to your computer and use it in GitHub Desktop.
Install Ruby 2.1.1 and RubyGems 1.8.25 on CentOS 6.5
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
# Install Ruby | |
wget http://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.1.tar.gz | |
tar xvzf ruby-2.1.1.tar.gz | |
cd ruby-2.1.1 | |
./configure --prefix=/usr | |
make | |
make install | |
# remove "ruby-2.1.1" folder in /root | |
# Install RubyGems | |
wget http://production.cf.rubygems.org/rubygems/rubygems-1.8.25.tgz | |
tar xvzf rubygems-1.8.25.tgz | |
cd rubygems-1.8.25 | |
ruby setup.rb config | |
ruby setup.rb setup | |
ruby setup.rb install | |
# remove "rubygems-1.8.25" folder in /root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment