Created
October 22, 2012 16:46
-
-
Save sheenobu/3932488 to your computer and use it in GitHub Desktop.
mirror: How to Install Ruby on Rails on CentOS 6 with RVM
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
#https://www.digitalocean.com/community/articles/how-to-install-ruby-on-rails-on-centos-6-with-rvm | |
sudo yum update | |
sudo yum install curl git | |
curl -L get.rvm.io | bash -s stable | |
source ~/.rvm/scripts/rvm | |
rvm requirements | |
rvmsudo yum install -y ... | |
rvm install 1.9.3 | |
rvm use 1.9.3 --default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment