文件名称:fbs-tutorial:使用fbs创建PythonQt GUI的教程
文件大小:283KB
文件格式:ZIP
更新时间:2024-05-13 00:44:01
pyqt5 pyinstaller Python
fbs教程 本教程说明如何使用fbs创建简单的Python GUI和关联的安装程序: 您可以在Windows,Mac或Linux上遵循本教程。 您需要Python 3.5或3.6。 设置 在当前目录中创建一个虚拟环境: python3 -m venv venv 激活虚拟环境: # On Mac/Linux: source venv/bin/activate # On Windows: call venv\scripts\activate.bat 本教程的其余部分假定虚拟环境处于活动状态。 安装所需的库(最著名的是fbs和PyQt5 ): pip install fbs PyQt5==5.9.2 (如果这会产生错误,请先尝试pip install wheel 。) 您也可以将Qt用于Python而不是PyQt。 为此,在整个教程中只需编写PySide2而不是PyQt5 。 对于上
【文件预览】:
fbs-tutorial-master
----main.py(980B)
----.github()
--------issue_template.md(153B)
----screenshots()
--------uninstaller-windows-3.png(21KB)
--------installer-mac.png(54KB)
--------app-mac.png(8KB)
--------quote-app.png(5KB)
--------uninstaller-windows-2.png(23KB)
--------installer-windows-2.png(19KB)
--------installer-windows-3.png(14KB)
--------installer-windows.png(18KB)
--------app-ubuntu.png(5KB)
--------app-windows.png(4KB)
--------uninstaller-windows-1.png(87KB)
--------installer-windows-1.png(14KB)
--------installer-windows-4.png(15KB)
----styles.qss(135B)
----LICENSE(34KB)
----.gitignore(106B)
----README.md(9KB)