Created
June 28, 2011 19:17
-
-
Save avlok/1051950 to your computer and use it in GitHub Desktop.
install rvm and ruby 1.9.2 on snow leopard
This file contains hidden or 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
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