I'm following this tutorial:

http://www.christopherirish.com/2010/08/25/how-to-install-rvm-on-ubuntu-10-04/

When I get to the part where he tells us to modify the .bashrc file, I get stuck. For one thing, the .bashrc file is nowhere to be found.

enter image description here

Second, I tried manually creating the file myself and put this as it's contents:

if [[ -n "$PS1" ]]; then

if [[ -s $HOME/.rvm/scripts/rvm ]] ; then source $HOME/.rvm/scripts/rvm ; fi

fi

But when I try running the command rvm notes I get the following error:

No command 'rvm' found, but there are 20 similar ones rvm: command not found

What can I do to use RVM properly?

link|improve this question

80% accept rate
@taro: Isn't that what I'm doing. :/ – Sergio Tapia Sep 30 '11 at 15:34
2  
This question shouldn't be closed, I came here looking for it. – jocull Nov 3 '11 at 4:40
feedback

closed as off topic by Jacob, Simone Carletti, Shef, PaĆ­lo Ebermann, genesis Oct 1 '11 at 0:13

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

It's seems to me the last time I assisted someone with an RVM install, Wayne changed it so that the install automatically added the proper lines to the .bashrc file. I am not that familiar with Linux Mint, but know that you can sometimes also see it as .bash_profile, or simply .profile. Another recommendation from me, and something that has caused me a lot of heartache when installing RVM is remembering to restart the terminal session after installing RVM. The easiest way of course is to simply close your terminal session and start a new one, or if you know your shell configuration profile, simple source ~/.bashrc in your open terminal.

link|improve this answer
1  
+1: use the command . ~/.bashrc before trying to run rvm – glenn jackman Sep 30 '11 at 15:39
feedback

Please be sure to follow the directions listed on https://rvm.beginrescueend.com/rvm/install/ as they detail the exact set of steps needed for both Per-User and Multi-User installation types. They work for 1.6.x and up exactly as detailed, and were tested up to and including against 1.8.5 which is the current release.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.