Pip install not functioning on windows 7 Cygwin install

后端 未结 3 494
不知归路
不知归路 2020-12-24 13:36

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

3条回答
  •  星月不相逢
    2020-12-24 14:26

    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
    

提交回复
热议问题