我在使用 pip 安装 pyqt5 工具时遇到问题。任何解决方案?
I have problem installing pyqt5 tools with pip. any solution?
我尝试用 pip 安装 pyqt5-tools 但出现了这个错误:
ERROR: pyqt5==5.14.0 from https://files.pythonhosted.org/packages/7c/5b/e760ec4f868cb77cee45b4554bf15d3fe6972176e89c4e3faac941213694/PyQt5-5.14.0.tar.gz#sha256=0145a6b7de15756366decb736c349a0cb510d706c83fda5b8cd9e0557bc1da72 (from pyqt5-tools) has a pyproject.toml file that does not comply with PEP 518: 'build-system.requires' contains an invalid requirement: 'sip >=5.0.1 <6'
我已经顺利安装了pyqt5
从 python 官方网站安装 Python 3.8 它位于 页面底部: https://www.python.org/downloads/release/python-380/
然后使用 Python 3.8 安装软件包 而不是您当前使用的版本,如下所示:
py -3.8 -m pip install pyqt5-tools
这对我有用,希望对你也有用:)
请注意,您需要 使用 python 3.8 作为 运行 代码 :C
我尝试用 pip 安装 pyqt5-tools 但出现了这个错误:
ERROR: pyqt5==5.14.0 from https://files.pythonhosted.org/packages/7c/5b/e760ec4f868cb77cee45b4554bf15d3fe6972176e89c4e3faac941213694/PyQt5-5.14.0.tar.gz#sha256=0145a6b7de15756366decb736c349a0cb510d706c83fda5b8cd9e0557bc1da72 (from pyqt5-tools) has a pyproject.toml file that does not comply with PEP 518: 'build-system.requires' contains an invalid requirement: 'sip >=5.0.1 <6'
我已经顺利安装了pyqt5
从 python 官方网站安装 Python 3.8 它位于 页面底部: https://www.python.org/downloads/release/python-380/
然后使用 Python 3.8 安装软件包 而不是您当前使用的版本,如下所示:
py -3.8 -m pip install pyqt5-tools
这对我有用,希望对你也有用:)
请注意,您需要 使用 python 3.8 作为 运行 代码 :C