我在 Windows 上有 Python 3.8。已经通过 pip PyQt5 安装,尝试了 PyQt5-tools 但不能。我的 PyQt5 版本是:5.13.1
pip install PyQt5-tools
给出错误:
ERROR: Could not find a version that satisfies the requirement PyQt5-tools(from versions: none)
ERROR: No matching distribution found for PyQt5-tools
我检查了https://pypi.org/project/pyqt5-tools/#files并尝试了他们提到的做法:
pip install pyqt5-tools==5.13.1.1.6rc0
或者
pip install --pre pyqt5-tools~=5.13.1
给出与上述相同的错误。该网站虽然提到了 Python 3.5、3.6、3.7 而没有 3.8
我假设这是 Python 版本的问题。我对吗?或者它可能与确切的 PyQt5 版本有关?有人可以澄清一下吗?如何解决这个问题?