Last active
December 14, 2018 07:14
-
-
Save chiraggude/11128087 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 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
Thanks man! cant believe its so hard to install ruby