mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
794 B
794 B
layout | title | date | sidebar | footer |
---|---|---|---|---|
page | Installing Ruby with RVM | July 31 2012 | false | false |
RVM (Ruby Version Manager) handles the installation and management of multiple Ruby environments. Ruby 1.9.3 is required for Octopress and using RVM you can install it with ease.
Install RVM
Run the following command from your terminal.
curl -L https://get.rvm.io | bash -s stable --ruby
Be sure to follow any subsequent instructions as guided by the installation process.
Install Ruby 1.9.3
Next install Ruby 1.9.3 and you'll be all set.
rvm install 1.9.3
rvm use 1.9.3
rvm rubygems latest
Run ruby --version
to be sure you're using Ruby 1.9.3. If you're having trouble, seek help here.