2013-11-05 22:02:14|
1.安装
使用PyInstaller需要安装PyWin32。
下载与Python对应的PyInstaller版本,解压后就算安装好了。
例如,安装了PyInstaller-2.1版本,解压后的路径和文件夹下的内容如下所示:
2.生成exe文件
Python程序的目录为 F:\hello.py
在命令行中进入pyinstaller所在的目录,运行python
pyinstaller.py F:\hello.py
在PyInstaller-2.1目录下,生成文件夹hellohello目录下有文件
exe文件在dist目录下
如果将python文件复制到pyinstaller.py所在目录下,则运行python
pyinstaller.py hello.py
3. pyinstaller的一些参数
(1)-F 制作独立的可执行程序
exe文件
但是,运行生成的exe文件会包含警告。