if you use virtualenvwrapper (which I recommend):
lets say that I already use foo
virtualenv and I have virtualenvwrapper installed:
$ cdvirtualenv
if this command goes to the path $VIRTUAL_ENV
, which in this case:
$ pwd /home/bernardo/.virtualenvs/foo $ ls bin build include lib local
in my case, to see my virtual packages, I will go to lib/python2.7/site-packages
or:
$ lssitepackages figleaf figleaf-0.6.1-py2.7.egg-info initools INITools-0.3.1-py2.7.egg-info
the cdvirtualenv
and lssitepackages
come from "virtualenvwrapper"
source share