I'm using virtualenv on Ubuntu 12 and when I install packages with pip (after activating the virtualenv) the packages are not being installed in the environment's site-packages directory, they're ending up in the server's dist-packages directory. When setting up the venv I added the --no-site-packages
.
I think this is an issue with Ubuntu using dist-packages instead of site-packages, but how can I get virtual environments working?