Using pip to install modules in python failing

后端 未结 6 2194
被撕碎了的回忆
被撕碎了的回忆 2021-01-04 08:22

I\'m having trouble installing python modules using pip. Below is the output from the command window:

Note that I installed pip immediately before trying to install

6条回答
  •  旧时难觅i
    2021-01-04 08:56

    I had the same problem, but i needed to install 'ebooklib' module, which is not in the list of modules at http://www.lfd.uci.edu/~gohlke/pythonlibs. At the same time i had this module downloaded. But installation with ebooklib's setup.py failed with error: command '"c:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.ex e"' failed with exit status 2 Finnally, i've installed all the dependent modules separately, from lfd.uci.edu, and after that installing with setup.py was successfull.

提交回复
热议问题