Skip to content

Instantly share code, notes, and snippets.

@avlok
Created June 28, 2011 19:17
Show Gist options
  • Save avlok/1051950 to your computer and use it in GitHub Desktop.
Save avlok/1051950 to your computer and use it in GitHub Desktop.
install rvm and ruby 1.9.2 on snow leopard
from https://rvm.beginrescueend.com/rvm/install/
curl -s https://rvm.beginrescueend.com/install/rvm -o rvm-installer ; chmod +x rvm-installer ; rvm_bin_path=~/.rvm/bin rvm_man_path=~/.rvm/share/man ./rvm-installer
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile
source ~/.bash_profile
rvm install 1.9.2
rvm use 1.9.2 --default
ruby -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment