Terminal issue with virtualenvwrapper after Mavericks Upgrade Terminal issue with virtualenvwrapper after Mavericks Upgrade python python

Terminal issue with virtualenvwrapper after Mavericks Upgrade


Try reinstalling pip and then reinstalling virtualenvwrapper (I had to go through these steps after upgrading to Mavericks):

$ sudo easy_install pip$ sudo pip install --upgrade virtualenvwrapper


Re-arrange the export order so that the python path is placed before the virtualenv commands in your .bash_profile file.

# python pathexport PATH=/usr/local/bin:$PATH# needed for virtualenvwrapperexport WORKON_HOME=$HOME/.virtualenvssource /usr/local/bin/virtualenvwrapper.sh


Try edit .bash_profile file

# Home brewexport PATH=/usr/local/bin:$PATH# virtualenvwrapper export WORKON_HOME=$HOME/.virtualenvsexport VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/pythonexport VIRTUALENVWRAPPER_VIRTUALENV=/usr/local/bin/virtualenvsource /usr/local/bin/virtualenvwrapper.sh