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
Apparently you're missing setuptools. Some virtualenv versions use distribute instead of setuptools by default. Use the --setuptools option when creating the virtualenv or set the VIRTUALENV_SETUPTOOLS=1 in your environment.
--setuptools
VIRTUALENV_SETUPTOOLS=1