I was trying to install some flask extensions in my virtual environment, but got this error:
flask/bin/pip install flask-wtf==0.8.4
Wheel installs require setuptools >= 0.8 for dist-info support.
pip's wheel support requires setuptools >= 0.8 for dist-info support.
Storing debug log for failure in /Users/seanpatterson/.pip/pip.log
In order to upgrade setup tools - the reason I assumed - I ran the following with no joy, the output was:
pip install -U setuptools
-bash: pip: command not found
So I then tried the following on recommendation:
flask/bin/pip install --upgrade setuptools
I still get an error:
sim1-3010:microblog seanpatterson$ flask/bin/pip install --upgrade setuptools Wheel
installs require setuptools >= 0.8 for dist-info support. pip's wheel support requires
setuptools >= 0.8 for dist-info support. Storing debug log for failure in
/Users/seanpatterson/.pip/pip.log.
I'm very new to programming, and now it feels like I'm going around in circles as it seems to be saying I can't install setup tools because I need a newer version of setuptool to do so?!?!?