Created
April 20, 2012 05:27
-
-
Save johnantoni/2426290 to your computer and use it in GitHub Desktop.
rvm install with zlib + ruby
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
| # tested on debian 6 32bit and working | |
| # install | |
| curl -L get.rvm.io | bash -s stable | |
| # zlib | |
| rvm pkg install zlib | |
| # ruby with zlib support | |
| rvm install ruby-1.9.3-p125 | |
| # set as default | |
| rvm --default use ruby-1.9.3-p125 | |
| # switch to global gem set | |
| rvm gemset use global | |
| # install bundler | |
| gem install bundler |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment