【实用】Windows 下载 Python 第三方库的网站

http://www.lfd.uci.edu/~gohlke/pythonlibs/


因为我遇到了这个问题

Error while installing PyQt


Error: Make sure you have a working Qt qmake on your PATH.

然后找到了stackoverflow上的这个回答

http://stackoverflow.com/questions/23018398/error-while-installing-pyqt


“You can download a PyQt installer for Python 3.2 here at Christoph Gohlke's Python Extension Packages for Windows repository. Whenever I'm looking to install or update a module on Windows, I look there first.


我想起来我以前安装lxml的时候,也是在这个网站上找到的安装包。看来所有库缺失,都可以先来这里看一下。


附:如何安装whl文件

pip install 包名字.whl 即可安装某模块包

猜你喜欢

转载自blog.csdn.net/codechelle/article/details/71080795