I\'m deploying a Django app to a dev server and am hitting this error when I run pip install -r requirements.txt:
pip install -r requirements.txt
Traceback (most recent call la
For me, it turned out to be a permissions problem on site-packages. Since it's only my dev environment, I raised the permissions and everything is working again:
site-packages
sudo chmod -R a+rwx /path/to/my/venv/lib/python2.7/site-packages/