Last active
December 14, 2015 19:49
-
-
Save satoshin2071/5139623 to your computer and use it in GitHub Desktop.
Installing ruby 2.0.0 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
#For Mac with Homebrew | |
Update to the latest version rvm at first. | |
% rvm get latest | |
% rvm reload | |
% rvm version | |
rvm 1.18.18 (latest) by Wayne E. Seguin <[email protected]>, Michal Papis <[email protected]> [https://rvm.io/] | |
ssato-no-Mac-mini% brew install libyaml | |
ssato-no-Mac-mini% rvm pkg install openssl | |
ssato-no-Mac-mini% rvm install 2.0.0 \ | |
--with-openssl-dir=$HOME/.rvm/usr \ | |
--verify-downloads 1 | |
ssato-no-Mac-mini% rvm list | |
rvm rubies | |
=* ruby-1.8.7-p370 [ i686 ] | |
ruby-1.9.3-p125 [ x86_64 ] | |
ruby-1.9.3-p194 [ x86_64 ] | |
ruby-2.0.0-p0 [ x86_64 ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment