Install PyInstaller from PyPI:
pip install pyinstaller
Go to your program’s directory and run:
pyinstaller yourprogram.py
This will generate the bundle in a subdirectory called dist
.
接下来使用命令行工具进入到此 app 目录下,执行如下命令:
pyinstaller -F app.py
-F : 打包成单个可执行文件
-w : 打包之后运行程序,只有窗口不显示命令行
-c : 打包之后运行程序,显示命令行
参考:https://blog.csdn.net/qq_26877377/article/details/80357349
https://www.cnblogs.com/aoede-jacqueline/archive/2019/07/25/11244714.html