1. Introduction
Ruby is an object-oriented programming language that is similar in syntax to Perl and Python. The version of Ruby that ships with CentOS 6.2 is 1.8.7. If you need the latest version, you can download, compile and install Ruby from source code. This is a quick tutorial on installing Ruby 1.9.3 and Rubygems 1.8.24 on CentOS 6.2 from source.
Make sure your operating system packages are up to date by executing the following command:
2. Install
yum update -y |
In order to have all the proper dependencies installed, execute the following command:
yum groupinstall "Development Tools" |
Then, follow the steps described below:
cd /root/wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gztar xvzf ruby-1.9.3-p194.tar.gzcd ruby-1.9.3-p194./configuremakemake install |
Once the install is complete, verify the version of Ruby:
ruby --versionruby 1.9.3p194 (2012-04-20 revision 35410) |
Update to the latest RubyGems version (RubyGems is a sophisticated package management framework for Ruby.):
cd /root/wget http://rubyforge.org/frs/download.php/76073/rubygems-1.8.24.tgztar xvzf rubygems-1.8.24.tgzcd rubygems-1.8.24ruby setup.rb |
Verify the version of RubyGems:
gem --version1.8.24 |
Ensure you have the latest gem versions:
gem update --system |
Install the Rake build language (Rake is a build tool written in Ruby, similar to make):
gem install rake |
Install all of Rails and its dependencies:
gem install rails |
List the installed gems:
gem list |


0 comments:
Post a Comment