Where is virtualenvwrapper.sh after pip install? Where is virtualenvwrapper.sh after pip install? python python

Where is virtualenvwrapper.sh after pip install?


You can use the find command to search for a file:

find / -name virtualenvwrapper.sh

This will search all directories from the root for the file.


on ubuntu 12.04 LTS, installing through pip, it is installed to

/usr/local/bin/virtualenvwrapper.sh


on ubuntu 17.04, installing through pip as a normal user, it is installed to

~/.local/bin/virtualenvwrapper.sh


did you already try this ?

$ which virtualenvwrapper.sh


I just reinstalled it with pip.

sudo pip uninstall virtualenvwrappersudo pip install virtualenvwrapper

And this time it put it in /usr/local/bin.