我们需要用到PyInstaller 模块,但是Python本身没有PyInstaller 模块,所以我们需要进行安装
pip install pyinstaller
成功安装后会看到Successfully installed pyinstaller-x.x.x的提示。
PyInstaller的使用指令如下
pyinstaller 选项 Python 源文件
实例:
pyinstaller -F test.py
在执行的目录下会生成build、dist目录以及test.spec文件,把build目录和test.spec文件删除,需要的EXE文件在dist文件夹里
PyInstaller的一些常用选项
-F 产生单个的可执行文件
-D 产生一个目录(包含多个文件)作为可执行程序
-a 不包含 Unicode 字符集支持
-d 产生 debug 版本的可执行文件
-w 指定程序运行时不显示命令行窗口(仅对 Windows 有效)
-c 指定使用命令行窗口运行程序(仅对 Windows 有效)
-o 指定 spec 文件的生成目录。如果没有指定,则默认使用当前目录来生成 spec 文件
-p 设置 Python 导入模块的路径(和设置 PYTHONPATH 环境变量的作用相似)。也可使用路径分隔符(Windows 使用分号,Linux 使用(冒号)来分隔多个路径
-n 指定项目(产生的 spec)名字。如果省略该选项,那么第一个脚本的主文件名将作为 spec 的名字
查看更多的信息请输入指令
pyinstaller -h
如果在打包exe的时候出现
TypeError: an integer is required (got type bytes)
并且报错前的pyinstaller是用 pip install pyinstaller 来安装的,那么用以下命令再重新安装一次即可解决
pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz