I am testing Django 1.6b, Python 3.3.2 (compiled from source) and pyvenv with Ubuntu 12.04.
Each time I try to install and install pip install [package] , the package tries to install itself globally, and not in the local environment. A simple workflow is as follows:
$ pyvenv environments/roebk
$ source environments/roebk/bin/activate
$ (roebk) pip install south
error: could not create '/usr/local/lib/python3.3/site-packages/south': Permission denied
I double checked that I am using the correct version of pip.
$ pip -V pip 1.4 from /usr/local/lib/python3.3/site-packages/pip-1.4-py3.3.egg (python 3.3)
Did I miss something obvious?
source share