在 windows 上安装 PyQt5 Designer

Posted

技术标签:

【中文标题】在 windows 上安装 PyQt5 Designer【英文标题】:Installing PyQt5 Designer on windows 【发布时间】:2017-10-19 14:45:15 【问题描述】:

我使用 Windows 命令窗口和pip3 install PyQt5 安装了 PyQt5,如download page 中所述,它已成功安装。但我没有在 Windows 开始菜单中找到 PyQt Designer,所以我想我需要单独安装它。在搜索了各种论坛后,我尝试使用pip3 install pyqt5-tools 添加它,它显示Successfully installed pyqt5-tools-5.9.0.1.2,但没有安装 PyQt Designer。

有没有办法安装 PyQt Designer?

我的 Python 版本:

>>> python --version
Python 3.5.2 :: Anaconda custom (64-bit)

【问题讨论】:

【参考方案1】:

在 Windows 10 上,使用 Python3.5 和 pyqt5,我使用 pip 安装了 pyqt5-tools:

pip install pyqt5-tools

并且设计器会自动安装在以下文件夹中:

"Python directory"\Python35\Lib\site-packages\pyqt5-tools

【讨论】:

您使用的是 32 位 Windows 吗?我尝试pip install pyqt5-tools 并得到Could not find a version that satisfies the requirement pyqt5-tools (from versions: ) No matching distribution found for pyqt5-tools 这是针对 64 位窗口的。 win32上没试过。 我尝试使用 32 位和 64 位的 python,但无法安装。 pip show pyqt5-tools 为我展示了它,但是当我尝试 pip install pyqt5-tools 时,如果说没有候选人满足等等等等,并且没有安装任何东西。 在 windows 上,您需要拥有管理员权限才能使 pip 正常工作。你?只是运行 pip 的命令窗口必须具有管理员权限。 好吧,我有管理员权限,但 cmd 没有以管理员身份启动,可能是这种情况。我只是放弃了设计师并使用布局设置了所有内容。【参考方案2】:

试试这个:

pip install pyqt5
pip install pyqt5-tools

现在您可以在 site-packages/pyqt5-tools 中找到设计器。

Lib\site-packages\qt5_applications\Qt\bin

【讨论】:

对我来说,“designer.exe”不在“pyqt5-tools”文件夹中。它正好在“qt5_applciations\Qt\bin”文件夹中。感谢您提供这个有用的答案。【参考方案3】:

我想我找到了解决方法,首先我卸载了PyQt5pyqt5-tools-5.9.0.1.2

pip3 uninstall PyQt5
pip3 uninstall pyqt5-tools-5.9.0.1.2

我去this page,下载PyQt5-5.6-gpl-Py3.5-Qt5.6.0-x64-2.exe文件并正常安装。

【讨论】:

'Installed it normal'似乎暗示你的意思是用windows方式安装,这通常是不正常的。【参考方案4】:

在大多数情况下,由于软件包的更新或其他一些原因,“设计器工具”不会在默认位置。

如果是这样,你可以在这里找到它:

C:\Program Files (x86)\Python37-32\Lib\site-packages\pyqt5_tools\Qt\bin

【讨论】:

【参考方案5】:

试试 pip install PyQt5Designer 然后将在lib/QtDesigner/designer.exe

【讨论】:

【参考方案6】:

这可能没什么帮助,但我只是想分享一下,我也使用 pip 和工具安装了 pyqt5,并且在 Windows 开始中也找不到 PyQt Designer,因为我搜索了“pyqt Designer”。当我只搜索“设计师”时,我可以找到它。

【讨论】:

以上是关于在 windows 上安装 PyQt5 Designer的主要内容,如果未能解决你的问题,请参考以下文章

在 windows 上安装 PyQt5 Designer

如何在 Windows 10 上使用 python 3.7.0a2 安装 PyQt5

如何在Windows上安装pyqt5

如何在 windows x86 上安装 pyqt5-sip

Windows下安装PyQt5完整教程

Windows 10 怎样安装 PyQt5?