如何在 Ubuntu 14.10 中安装 PyQt for Python 3?

如何在 Ubuntu 14.10 中安装 PyQt for Python 3?

我在网上找到了一些针对早期版本 Ubuntu 的教程,但它们似乎不适用于 Ubuntu 14.10;要么就是我做错了。

我想使用 Qt Designer 设计一个 GUI,使用 PyQt 将其转换为 .py,然后在 Python 中使用它。

为了执行此操作我需要安装哪些软件包?

答案1

您需要的所有工具都包含在 Ubuntu 存储库中。您必须安装软件包qtcreator,其中包含融合的QtDesigner 和包pyqt5-dev-tools提供了pyuic5一个从文件生成 Python 代码的实用程序.ui

sudo apt-get install qtcreator pyqt5-dev-tools

答案2

在终端中运行这些:

sudo apt-get 安装 python3-pyqt5

sudo apt-get 安装 qttools5-dev-tools

sudo apt-get 安装 qtcreator pyqt5-dev-tools

运行 PyQt5 Designer,位于:

/usr/bin/设计师

运行 PyQt5 用户界面编译器 (PYUIC5) 将 .ui 转换为 .py

pyuic5 gui.ui-o gui.py

运行 PyQt5 资源编译器 (PYRCC5) 将 .qrc 转换为 .py

pyrcc5 图像.qrc -o 图像_rc.py

答案3

  1. 安装python3
  2. 安装sip
  3. 安装python3-pip
  4. 运行命令:pip3 install pyqt5

答案4

好吧,我在这里记录了使用 qt 设计器安装 pyqt5 和代码生成的步骤:https://gist.github.com/ujjwal96/1dcd57542bdaf3c9d1b0dd526ccd44ff

通过它您可以从 Qt Designer 本身生成代码。

安装

pip3 install --user pyqt5  
sudo apt-get install python3-pyqt5  
sudo apt-get install pyqt5-dev-tools
sudo apt-get install qttools5-dev-tools

配置从终端运行

$ qtchooser -run-tool=designer -qt=5

或者

写入以下内容/usr/lib/x86_64-linux-gnu/qt-default/qtchooser/default.conf

/usr/lib/x86_64-linux-gnu/qt5/bin
/usr/lib/x86_64-linux-gnu

代码生成

创建uic.py文件。

#!/usr/bin/python3

import subprocess
import sys

child = subprocess.Popen(['pyuic5' ,'-x',sys.argv[1]],stdout=subprocess.PIPE)

print(str(child.communicate()[0],encoding='utf-8'))


$ chmod +x uic.py

创建符号链接:

$ sudo ln uic.py "/usr/lib/x86_64-linux-gnu/qt5/bin/uic"

桌面入门

[Desktop Entry]
Name=Qt5 Designer
Icon=designer
Exec=/usr/lib/x86_64-linux-gnu/qt5/bin/designer
Type=Application
Categories=Application
Terminal=false
StartupNotify=true
Actions=NewWindow

Name[en_US]=Qt5 Designer

[Desktop Action NewWindow]
Name=Open a New Window
Exec=/usr/lib/x86_64-linux-gnu/qt5/bin/designer

~/.local/share/application使用.desktop扩展名保存

相关内容