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 |
Yes , it works and if you meet the following error
ruby setup.rb config
/usr/local/lib/ruby/1.9.1/yaml.rb:84:in `<top (required)>':
It seems your ruby installation is missing psych (for YAML output).
then run the following command
rvm pkg install libyaml
and
rvm reinstall ruby-(version)
On CentOS 6 this works too...
$ sudo rpm -i http://yum.puppetlabs.com/el/6/products/x86_64/puppetlabs-release-6-6.noarch.rpm
$ sudo yum install puppet puppet-server
Thanks man! cant believe its so hard to install ruby
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Finally a method that actually works. Thanks!