工具:pyinstaller
安装:pip install pyinstaller
使用:
1 将依赖文件集中到一个文件夹:
pyinstaller -D -w xxx.py
-w: xxx.py是一个窗体程序。
2 将所有依赖文件都打包到同一个可执行文件中:
pyinstaller -F -w xxx.py
--icon=xxx.ico 可指定图标
2024-01-10 16:53:16
工具:pyinstaller
安装:pip install pyinstaller
使用: