Tuesday, April 22, 2014

Installing RVM @ Ubuntu

Instructions given on : http://rvm.io/rvm/install

Are badly given. Too much mix and match.

For beginners it might searching for the right thing in an ocean where everything seems similar.

ps: that's a bad one.

Anyways:

Step 1) Insall curl on your machine.
Step 2) Download the stable release version of RVM from rvm.io
\curl -sSL https://get.rvm.io | bash -s stable

Step 3) That's it. Check rvm --version.
and there you go!

Step 4) Well, if it was that straight forward I would not have written this blog.

Step 5) You just need to add a path to your bashrc file.
use 
echo '[[ -s "/home/userName/.rvm/scripts/rvm" ]] && source "/home/userName/.rvm/scripts/rvm"' >> ~/.bashrc
Step 6) Source bashrc file
source ~/.bashrc 

And the most important

Step 7) Check what u have installed:
rvm --version

Step 8) Enjoy!

No comments:

Post a Comment