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.
|
Fixed it. Needed to add:
to |
|||
|
happened to me too. I had
added in my .bashrc All i had to do was add another
to the same file and it worked! :) Of course, you have to restart your terminal after that |
|||||||||
|
|
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
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) |
|||||
|
|
(Kubuntu 11.10) The
|
||||
|
|
|
I just had to invoke source |
||||
|
|
|
To add all rvm functionality to your .bash_profile you should use following command:
After that you should reload current shell or open new terminal session and type following command to reload .bash_profile:
|
|||
|
|
|
Installing RVM, See here http://octopress.org/docs/setup/rvm/ |
|||
|
|
|
On a clean install of Ubuntu 12.04 I ran into the same issue. The RVM installer creates or appends to a file called ~/.bash_login the necessary bit of code to avoid the original problem:
However this does not seem to get invoked. Adding it to ~/.bashrc resolved the issue for me. |
||||
|
|
|
The above solution will only work, in case rvm is installed for the current user. A more general solution would use the rvm path variable:
|
|||
|
|
|
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. |
|||
|
|
|
To Change the Default Version of ruby : In Ubuntu 11.10 run this command on terminal . |
|||
|
|
rvm infoto your question please. – the Tin Man Dec 29 '11 at 4:34$ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)– lesce Dec 29 '11 at 4:41[[ -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 theRVM is not a functionerror. – Brandon Tilley Dec 29 '11 at 4:43