I\'m working with flask and python for the first time trying to create a web app. I\'m on Windows 10 using Cygwin; for some reason, even though I\'ve successfully installed
You need to create a virtualenv and then install pip in that.
virtualenv
virtualenv flasktest
next,
cd flasktest
then,
source bin/activate
lastly,
pip install flask
You should be all good with running flask (only in the virtualenv, it will not work outside of it.)