I am trying to get Flask to work under Cygwin, but I cannot get pip to work. I successfully completed the easy_install task and even used this to install pip. As far as I can tell, the installation went well.
Here is the result:
$ easy_install pip
Searching for pip
Best match: pip 1.5.2
Processing pip-1.5.2-py2.7.egg
pip 1.5.2 is already the active version in easy-install.pth
Installing pip script to /usr/bin
Installing pip2.7 script to /usr/bin
Installing pip2 script to /usr/bin
Using /usr/lib/python2.7/site-packages/pip-1.5.2-py2.7.egg
Processing dependencies for pip
Finished processing dependencies for pip
However, when I try to do something through pip, it does nothing. For example:
$ pip install flask
There is no conclusion. I really don't know where to start.
source
share