Python生成可执行文件exe
Python生成可执行文件exe
一、安装 pyinstaller
pip install pyinstaller
二、使用 pyinstaller 命令
使用示例:
1.1 在程序目录中,运行命令:
pyinstaller myscript.py #相对路径
则可以在当前目录生成两个文件夹dist和build,exe文件在dist文件夹中
pyinstaller C:\myscript.py #绝对路径
则会在当前执行命令的目录生成dist和build文件夹
1.2 常用命令参数
1.2.1 -F 指定打包后只生成一个exe格式的文件
如:pyinstaller -F T1.py
则dist文件只有一个exe格式的文件T1
1.2.2 -i 改变生成程序的icon图标
pyinstaller -F --icon=my.ico T1.py
1.2.3 -n NAME,--name=NAME 设置产生文件的名字(mypy)
pyinstaller -F -n mypy --icon=my.ico T1.py
补充
-c, –console, –nowindowed 使用控制台,无界面(默认)
-w, –windowed, –noconsole 使用窗口,无控制台