Skip to content

Instantly share code, notes, and snippets.

@dmcrodrigues
Created June 17, 2012 20:26
Show Gist options
  • Save dmcrodrigues/2945633 to your computer and use it in GitHub Desktop.
Save dmcrodrigues/2945633 to your computer and use it in GitHub Desktop.
install rvm on Mac OS X
# install rvm using ruby
curl -L https://get.rvm.io | bash -s stable --ruby
# add rvm function to user's profile
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"' >> ~/.bash_profile
# reload profile
source ~/.bash_profile
# install ruby and set as default
rvm install 1.9.3
rvm --default 1.9.3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment