Clean uninstall of virtualenv and virtualenvwrapper
Solution 1:
I got the same issue, but eventually found out where the problematic file was. It's
/etc/bash_completion.d/virtualenvwrapper
Delete it and you won't see the error message again.
PS: Here's how I found out where the file was:
grep -lir "virtualenvwrapper" /etc/
Solution 2:
You've probably followed this step from the documentation:
You will want to add the command to source
/usr/local/bin/virtualenvwrapper.sh
to your shell startup file, changing the path tovirtualenvwrapper.sh
depending on where it was installed bypip
.
Just installing the virtualenvwrapper won't include anything in your shell startup and you would not have got the error in your question on opening a new console.
I cannot guess where exactly you've modified your shell configuration, but if you use Bash, then you've probably put it in ~/.bashrc
or ~/.profile
:
export WORKON_HOME=~/Envs
source /usr/local/bin/virtualenvwrapper.sh
Just remove those lines and try to create a new terminal window.