I just installed rvm on my computer using the following command
bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
and got it in my terminal
Installation of RVM to /home/rahul/.rvm/ is complete.
When I go to /home/rahul/.rvm/, I can see all the necessary folders, but when I provide the rvm command in the terminal, I get this error
rvm --version
No command 'rvm' found, but there are 19 similar ones
rvm: command not found
How can i fix this?
EDIT
I also added the following lines in my bashrc
if [[ -n "$PS1" ]]; then
if [[ -s $HOME/.rvm/scripts/rvm ]] ; then source $HOME/.rvm/scripts/rvm ; fi
fi
source
share