Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just installed RVM, but can't make it work. I have such line at the end of my .profile file:

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

I tried to run source .profile and restarting terminal, but still, when I run rvm use 1.9.2 I'm getting:

RVM is not a function, selecting rubies with 'rvm use ...' will not work.

My system is Ubuntu 11.10.

share|improve this question

9 Answers

up vote 42 down vote accepted

you are not using an login shell

the process of enabling login flag is described here: https://rvm.io/integration/gnome-terminal/

also some details on what login shell is: https://rvm.io/support/faq/#shell_login

Thus, You need to check the option "Run as login shell" in gnome-terminal settings.

Sometimes it is required to shell the command to /bin/bash --login.

It is required to open new terminal after this setting.


For remote connections it is important to understand the differene between running interactive ssh session and executing single commands.

While running ssh server and then working with the server interactively you are using login shell by default and it's all fine, but for ssh server "command" you are not using login shell and it would be required to run it with ssh server 'bash -lc "command"'.

Any remote invocation can have the same problem as executing single command with ssh.

share|improve this answer
2  
What would the equivalent solution be on mac? – ajkochanowicz May 8 '12 at 16:39
3  
try rvm get stable --auto and check your terminal settings – mpapis Jun 15 '12 at 16:41
3  
fyi: we had to start a new terminal after setting this. – oma Sep 12 '12 at 17:09
@mpapis How would I setup gnome-terminal to "Run command as login shell" on a remote server for which I can't forward X server to my machine? – Waseem May 3 at 6:05
check the update for remote connections. – mpapis May 3 at 13:16

You need to run the follow

user$ source ~/.rvm/scripts/rvm

then run this

user$ type rvm | head -n 1

and if you get

rvm is a function

the problem is solved.

You also need to run user$ rvm requirements to see dependency requirements for your operating system

Source: https://rvm.io/rvm/install/

I forget mention that you need to put this code into you ~/.bashrc or ~/.zshrc file and you will not need to write this code again. Cheers!

share|improve this answer
This worked perfect on OSX. Thanks! – cavneb Jul 12 '12 at 21:41
Worked on OSX Mountain Lion – pws5068 Aug 16 '12 at 7:42
Thanks dude. it works for me! – Maksym H. Sep 4 '12 at 3:12
Thanks. Worked for me on ubuntu 10.04. – vekozlov Sep 5 '12 at 18:08
1  
This solution only works in the current shell session. If you follow this solution you will have to repeat these steps every time you log on to the console again. A more permanent solution is to add the following to the ~/.bashrc file: if test -f ~/.rvm/scripts/rvm; then [ "$(type -t rvm)" = "function" ] || source ~/.rvm/scripts/rvm fi – Stanley Sep 17 '12 at 5:58
show 2 more comments

The latest RVM (rvm 1.11.6 (stable)) stopped working on Ubuntu (10.10 - 64 bit - nerdy gnat or whatever) - I kept getting

"RVM is not a function, selecting rubies with 'rvm use ...' will not work."

Before, I got the message, but 'rvm 1.9.3-p0@rails321' would work. Now, it wouldn't work - you couldn't change gemsets at all.

Nothing worked, until I found this - make this the LAST line in /home/your-name/.bashrc

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

share|improve this answer
Correction. Do this: – Rod McLaughlin Apr 5 '12 at 17:01
2  
"rvm get stable --auto" added to .bash_login [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" and removed it from .bashrc - I added source ~/.bash_login at the end of .bashrc and at the BEGINNING of any script which changes gemsets in midstream – Rod McLaughlin Apr 5 '12 at 17:26

As you said, the error shown could be the following one.

RVM is not a function, selecting rubies with 'rvm use ...' will not work.

You need to change your terminal emulator preferences to allow login shell.
Sometimes it is required to use `/bin/bash --login` as the command. 
Please visit https://rvm.io/integration/gnome-terminal/ for a example.

As said above, just type '/bin/bash --login' in your terminal (after restarting your terminal), then type the comand 'rvm use 1.9.3' (for e.g.) and it will start using the same version.

Just execute the command 'ruby -v' to confirm that the RVM is using the updated version of Ruby.

share|improve this answer

even though you accepted an answer, i'd like to suggest another way .. ~/.bashrc is loaded before any shell is opened. Add that line at the end of that, and you don't need any of that login shell thing

share|improve this answer
"that login shell thing" is there for a reason, I have did many tests with RVM sourcing and it's the only way that guarantees work without undetectable and hard to solve errors – mpapis Mar 30 '12 at 7:54
This didn't work for me either. Using Mac OS X Lion. – ajkochanowicz May 8 '12 at 16:39

Procedure for installing Ruby 1.9.3-p125 on Mac OSX 10.8 Mountain Lion

  1. You've already installed the latest XCode (>= 4.3) and and the command line Objective-C compiler "clang".
  2. You must run the "bash" shell for this procedure to work.
  3. Go to System Preferences
  4. Click on "Users & Groups"
  5. Click the lock on the bottom left of the panel and enter your password to unlock it.
  6. "Ctrl-Click" on your user icon in the left pane of the panel and choose "Advanced Options..."
  7. Change the Login Shell to "/bin/bash"
  8. Close the preferences
  9. Open a terminal window (press command+spacebar and type in "terminal")
  10. Follow the instructions at:

http://www.frederico-araujo.com/2011/07/30/installing-rails-on-os-x-lion-with-homebrew-rvm-and-mysql/

Notes:

  • To install ruby, you may need to specify the clang compiler:

    $ rvm install 1.9.3p125 --with-gcc=clang

  • If RVM gripes about /usr/local/rvm not found, you need to create a link:

    $ ln -s /Users/[your user name]/.rvm /usr/local/rvm

share|improve this answer
I think they are up to P194 now. If you do rvm install 1.9.3 --with-gcc=clang, you will get the latest version of 1.9.3 automatically. – George Campbell Aug 18 '12 at 18:25

To permanently resolve this just cut/paste following line:

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

From: ~/.bash_profile file

To: ~/.bashrc file

Reason this works is that .bashrc is executed each time you enter terminal, and .bash_profile each time you login. That is why solution /bin/bash --login works, but you have to do that each time you enter terminal. This way you are set until your next format, and you will forget all this by than :)

share|improve this answer

I'd got the same error because I'd ever installed the old rvm version ruby-rvm with the apt-get command.

I solved the problem by remove the script line to config the old rvm in .bashrc file.

Check the old rvm config script and then run source .profile

share|improve this answer

« Official » instructions are there: https://rvm.io/integration/gnome-terminal/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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