I\'m having a terrible time of getting pip up and running on Cygwin which I just recently installed on my Windows 7 Computer. I am writing in the hope that anyone out there
There is a work around for this problem: you can pipe the output to another process or to redirect it to file.
For example:
pip | more
Usage:
pip [options]
Commands:
install Install packages.
uninstall Uninstall packages.
freeze Output installed packages in requirements format.
list List installed packages.
show Show information about installed packages.
search Search PyPI for packages.
wheel Build wheels from your requirements.
help Show help for commands.
This will allow seeing stdout, but not stderr. In order to see stderr it also should be redirected:
pip 2>&1 | more