I am running this inside a virtual environment.
When I type:
pip install django
I get:
ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: /home/ENV/env/lib/python3.5/site-packages/pytz Consider using the --user option or check the permissions.
For it to work, I actually need to input:
python -m pip install --user django
Why?