Getting "Warning! PATH is not properly set up" when doing rvm use 2.0.0 --default Getting "Warning! PATH is not properly set up" when doing rvm use 2.0.0 --default ruby ruby

Getting "Warning! PATH is not properly set up" when doing rvm use 2.0.0 --default


I was stuck after I uninstalled rvm with

rvm implode

then after reinstalling rvm it received the same error message.After looking through wayne seguin's git hub page. He lists tools on his page and recommended using

rvm reset 

after an installation. This fixed my error message. No PATH edits needed.


The answer was to put this:

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*

**at the BOTTOM** (last line - important!) of my .bashrc file. I had it in my .bash_profile file (I am on Ubuntu) and that only partially worked leading to the confusing errors.


Maybe is not the best way to resolve this, but I added this line at the botton of my .zshrc (it will work in .bashrc too!)

export PATH="$GEM_HOME/bin:$PATH"