I am not able to switch the current Ruby version:

➜  ~  rvm list

rvm rubies

   ruby-1.9.2-p290 [ x86_64 ]
   ruby-1.9.3-p0 [ x86_64 ]

➜  ~  rvm use ruby-1.9.3-p0

RVM is not a function, selecting rubies with 'rvm use ...' will not work.
link|improve this question

69% accept rate
are you sure you installed rvm correctly ? what OS are you using ? – andrenkov Dec 29 '11 at 4:33
2  
Append the output of rvm info to your question please. – the Tin Man Dec 29 '11 at 4:34
I had a similar problem by installing rvm with apt-get on Ubuntu 11.10, I had to remove it and reinstall it with $ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) – andrenkov Dec 29 '11 at 4:41
2  
Do you have the RVM load function in your shell's startup script? [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" is the code to use. If you have RVM installed in your path, but you don't have that in your startup script, you can get the RVM is not a function error. – Brandon Tilley Dec 29 '11 at 4:43
feedback

7 Answers

Fixed it. Needed to add:

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"  # This loads RVM 

to .zshrc

link|improve this answer
feedback

happened to me too. I had

export PATH=~/.rvm/bin:$PATH

added in my .bashrc

All i had to do was add another

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"

to the same file and it worked! :) Of course, you have to restart your terminal after that

link|improve this answer
1  
i had this same line (the [[ -s "$HOME/...) in my ~/.bash_profile and that didn't seem to "take" when i opened a new terminal...but when i added the line below the PATH line in the ~/.bashrc, it did work -- meaning, i could type rvm use 1.9.3 and it would immediately recognize rvm as a command without me needing to first type source ~/.bash_profile -- i'm not a linux person, so this confuses me, but i'm glad this got it working. perhaps someone can clarify my confusion. – TimDog Feb 19 at 16:53
that's great, i just put this line in ~/.bashrc, it works. but i also don't know why. – Keating Wang Mar 21 at 6:28
Yeah its working. But every time I restart my machine I have to give above mentioned commands. If I do not provide the commands it says rvm is not a function. – Apurva Mayank Mar 22 at 5:42
feedback

Your shell doesn't know about the RVM function. After you install it, it tells you how to take care of this. Or go to the install page on the rvm site and check out the section titled "2. Load RVM into your shell sessions as a function"

Run this once to add the line that loads rvm into your ~/.bash_profile

$ echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile

or manually add it yourself. (Note that on some systems, you will want to put it in other places, for example on my system, Mac OSX Lion, I put it in ~/.profile)

link|improve this answer
@edwardsharp Or not. – Dave Newton Dec 29 '11 at 5:00
I'm using OS X Snow Leopard, putting that line in my .profile did the trick for me. – Heldraug Jan 11 at 19:55
feedback

(Kubuntu 11.10) The ~/.bash_profile is now called ~/.profile

echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.profile
source ~/.profile
rvm info # And now the fields display
link|improve this answer
feedback

To add all rvm functionality to your .bash_profile you should use following command:

echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile

After that you should reload current shell or open new terminal session and type following command to reload .bash_profile:

source .bash_profile
link|improve this answer
feedback

I had a global install of rvm, which runs /etc/profile.d/rvm.sh. However, that script requires BASH_VERSION or ZSH_VERSION to be set. I was running from crontab, which uses "sh".

I created a wrapper script that uses /bin/bash to source /etc/profile.d/rvm.sh.

link|improve this answer
feedback

I just had to invoke source ~/.bash_profile

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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