Python & QT & 发布exe

1)安装PySide2

pip install PySide2

2)安装pyinstaller

pip install pyinstaller

3)安装QT

包括QT Creator,QT Design Studio,QT(我装的是6.3版本)等。需要注册一个QT账号。

4)测试GUI应用

从PySide2里面找个例子,比如example/chart/percentbarchart.py。先在console下直接运行试试

>python percentbarchart.py

如果能看到GUI,那就可以发布了。

4)发布

如果想最终输出一个exe文件,用这个命令:

>pyinstaller -F percentbarchart.py

如果想去掉那个黑色的console界面,用这个命令:

>pyinstaller -F percentbarchart.py --noconsole

如果不想只要一个exe文件,想保留一堆库、dll,用这个命令:

>pyinstaller percentbarchart.py

 

最后生产的exe在dist目录里。

 


欢迎转载,本文地址: https://blog.prodrich.com/detail/69/

带着使命来到世上的你,给他人提供价值,才有价值