问题:在pycharm安装PyQt4或者直接用pip2 install PyQt4失败
解决:把.whl文件下载下来使用pip2安装
1. 在https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyqt4下载PyQt4‑4.11.4‑cp27‑cp27m‑win32.whl(这里尤其要注意不要下载64位的PyQt4‑4.11.4‑cp27‑cp27m‑win_amd64.whl),然后放到C:\Python27\下面
2. cmd中进入到C:\Python27\里面,运行
pip2 install wheel
pip2 install PyQt4‑4.11.4‑cp27‑cp27m‑win32.whl
答疑:为什么不能使用64位的呢?如果安装PyQt4‑4.11.4‑cp27‑cp27m‑win_amd64.whl会报错:
ERROR: PyQt4-4.11.4-cp27-cp27m-win_amd64.whl is not a supported wheel on this platform.
可以这样来理解
进入到python2.7的交互界面
import pip._internal
print(pip._internal.pep425tags.get_supported())
输出为:
[('cp27', 'cp27m', 'win32'), ('cp27', 'none', 'win32'), ('py2', 'none', 'win32'), ('cp27', 'none', 'any'), ('cp2', 'none', 'any'), ('py27', 'none', 'any'), ('py2', 'none', 'any'), ('py26', 'none', 'any'), ('py25', 'none', 'any'), ('py24', 'none', 'any'), ('py23', 'none', 'any'), ('py22', 'none', 'any'), ('py21', 'none', 'any'), ('py20', 'none', 'any')]
可以发现,容许的版本是win32的。