I'd like to try out the ZSH shell on my Mac, but I also do a lot of Ruby and Rails development, so I use RVM quite a bit too. The problem is that I can't seem to get RVM to work in ZSH, and it's working fine in the default Bash shell:

> zsh
> rvm 1.9.2
> ruby -v
ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0]
> which ruby
/usr/bin/ruby

I can definitely confirm that RVM is installed, as well as ruby 1.9.2 under RVM; I use it all the time in Bash. Running an rvm list in ZSH shows this, interestingly:

rvm rubies

   ruby-1.8.7-p302 [ x86_64 ]
=> ruby-1.9.2-p0 [ x86_64 ]

This is happening on both my iMac and MacBook Pro. I am using OS X 10.6.6 on both, ZSH 4.3.9 on the iMac (4.3.10 on the laptop). Nothing fancy like oh-my-zsh just yet.

I tried looking at the documentation on RVM's website, but nothing helped me there.

link|improve this question

feedback

1 Answer

up vote 44 down vote accepted

Do you have this line in your ~/.zshrc?

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" 
link|improve this answer
Hahaha, totally forgot about that simple thing. Now I'm annoyed at my stubbornness for not coming here sooner. Thank you :). – swilliams Jan 21 '11 at 5:30
3  
You are welcome. It happens sometime :) One useful thing I did to keep my old settings: "source ~/.profile" and "source ~/.bash_profile" in my ~/.zshrc . It also keep my .zshrc a bit cleaner. – intellidiot Jan 21 '11 at 5:38
2  
I found when I used oh-my-zsh to customise zsh it added a bunch of paths to .zshrc that it took from my existing shell -- this included paths added by rvm under bash. – Luke Chadwick May 9 '11 at 11:48
@intellidiot Do I still need PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting in .zshrc? – JJD Apr 19 at 18:49
I spent ages trying to figure this out too, as the line [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" is in my .zlogin, but I suppose it wasn't using it when opening new terminal windows on my mac (10.7.3, oh my zsh). Adding it to the .zshrc worked for me too but according to this stackoverflow comment, .zshrc is the wrong place to put this?? – waffl Apr 20 at 15:46
feedback

Your Answer

 
or
required, but never shown

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