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
On Windows, with python 3.7, this worked for me:
pip install --upgrade setuptools --user
--user installs packages in your home directory, which doesn't require admin privileges.
--user