Skip to content

Instantly share code, notes, and snippets.

@ashrithr
Last active December 18, 2015 16:19
Show Gist options
  • Save ashrithr/5811037 to your computer and use it in GitHub Desktop.
Save ashrithr/5811037 to your computer and use it in GitHub Desktop.
Install ruby using rvm

Installing ruby using rvm:

# On RedHat based systems
yum install curl

# On Debian based systems
apt-get install curl

#-----
curl -L get.rvm.io | bash -s stable

source /etc/profile.d/rvm.sh
#source ~/.rvm/scripts/rvm || source /usr/local/rvm/scripts/rvm

rvm requirements --verify-downloads 1

rvm install 1.9.3

rvm use 1.9.3 --default

rvm rubygems current
#-------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment