Search code examples
pythondjangovirtualenvpip

Where are the files downloaded using pip stored in virtualenv?


I am on linux mint 12. I have created a virtualenv called userena. and then i installed django-userena using pip in that virtualenv. I need to edit some django-usrena files. Where are they located?


Solution

  • To see where your virtualenv files are, enable it and issue the following bash command:

    $ echo $VIRTUAL_ENV
    

    Similar to your system's Python installation, the packages are stored inside lib/python2.*/site-packages/ directory. Find your package in there and edit the necessary files.