无法在Windows 10上为python3.4安装pyqt5

时间:2017-10-20 07:54:14

标签: python windows windows-10 python-3.4 pyqt5

我尝试在Windows 10上安装PyQt5 for python 3.4 with pip在cmd上使用此代码

pip install pyqt5

它回答

Collecting pyqt5
Using cached PyQt5-5.8-5.8.0-cp34.cp35.cp36.cp37-none-win-amd64.whl

但我收到了此错误

Could not find a version the satisfies the requirement sip>=4.19.1 <from pyqt5> <from versions: > 
No matching distribution found for sip>=4.19.1 <from pyqt5>

2 个答案:

答案 0 :(得分:1)

似乎只能从Python 3.5及更高版本通过pip安装PyQt5。
由于您使用的是Python 3.4,因此您可以升级Python或下载Windows可执行文件(32位或64位),例如从site下载。

在这里,您可以找到documentation的链接:

答案 1 :(得分:0)