I installed rbenv according to the github directions. I am running OSX but I have tried this on a Ubuntu 12.04 VM and got the same results. The following is what i get in my terminal when I try to change ruby versions:
rbenv versions
* 1.9.3-p0 (set by /Users/user/.rbenv/version)
1.9.3-p125
rbenv global
1.9.3-p0
rbenv rehash
ruby -v
ruby 1.8.7 (2011-12-28 patchlevel 357) [universal-darwin11.0]
which ruby
/usr/bin/ruby
Anyone have any ideas as to why rbenv isn't switching the ruby version like it thinks it is? Also there is no .rbenv file in the local directory that would be causing the ruby version to default to 1.8.7
rbenv local
rbenv: no local version configured for this directory
Check that PATH contains $HOME/.rbenv/shims and $HOME/.rbenv/bin
Also check that you have the following in your ~/.bash_profile if using bash or ~/.zshenv if using zsh
NOTE: Make sure it's the last setting in your ~/.bash_profile . I ran into an issue where I installed a program that updated my .bash_profile and reset PATH.
I just found this same problem. What I did was uninstall rbenv (via homebrew) and reinstall it. I also added
into ~/.bash_profile when I reinstalled rbenv. Works perfectly now.
You could try using chruby? chruby does not rely on shims, instead it only modifies
PATH
,GEM_HOME
,GEM_PATH
.This happened to me right after I reinstalled
rbenv
. Apparently I had a.ruby-version
file in my home directory, specifying a version that no longer existed. Once I deleted the file, everything worked.for fish shell user
Strangely, rbenv version did not set the .rbenv file Check with: ls -ltra --> to see that a rbenv was written