使用pyinstaller打包python源代码,成为linux/windows下可执行文件
pyinstaller,打包python源代码,成为linux/windows下可执行文件,多平台 下载:http://www.pyinstaller.org/static/ http://www.pyinstaller.org/static/source/1.5/ linux用这个:http://www.pyinstaller.org/static/source/1.5/pyinstaller-1.5.tar.bz2 windows用这个:http://www.pyinstaller.org/static/source/1.5/pyinstaller-1.5.zip 下载后解压就可,不需要安装! windows下的使用方法: 1、首先进入cmd命令行下执行: python C:/pyinstaller-1.5/configure.py (这一步是配置pyinstaller) 特别注意:windows下可能会报xxx file or 目录不存在, 这时候把他报错的文件给他建立出来,就能通过了 02、然后用cmd cd命令到你的.py程序所在的目录下。 03、执行: python C:/pyinstaller-1.5/Makespec.py 你的程序名.py --onefile --windowed (参数onefile表示只生成一个文件,有些打包会生成一个exe,以及多个文件;