python程序转成exe可运行程序

    近期越来越喜欢使用python写工具。使用的时候,发现程序内部成员python安装文件夹经常不同,假设用bat双击运行。经常须要改动从svn上down下来的bat文件里python.exe的路径。

而给策划、美术或者QA使用,更是须要让他们安装python和各种插件,他们能把你烦死。所以。必须把py文件转成exe文件,然后做到傻瓜式的双击运行。


    我了解到有两个经常使用的套件:py2exepyinstaller,我选用的是pyinstaller。这里记录一下用法。


    一、首先。上官网下载http://www.pyinstaller.org/,推荐32位2.7版本号的,然后解压。


    二、用法

    doc/Manual.html里写的非常具体,这里简单说一下最基本、经常使用的功能。

    1. cmd下进入解压的pyinstaller文件夹,运行命令格式例如以下:

        python pyinstaller.py [opts] program.py
        
        几个经常使用选项包含:
        -D, --onedir  创建一个文件夹,包括exe文件和依赖文件,这是默认选项。(Create a folder name containing an executable name and all support files. This is the default.)
        -F, --onefile 创建一个exe文件。全部依赖文件都打包进了这个exe文件。这个exe会比較大。可是我认为方便使用。(Create a single executable file name (or name .exe or name .app).)
        -c, --console, --nowindowed 控制台。无界面。默认选项。(Set up a console subsystem for standard input/output at run time. This is the default for both one-file and one-folder modes.)
        -w, --windowed, --noconsole 窗体无控制台。

(On Windows and Mac OS X, do not create a console window at run time for standard input/output. (This option is ignored for other operating systems.) On Mac OS X, this option triggers the creation of an OS X application bundle.)
    
    比方:D:\soft\python\PyInstaller-2.1>python pyinstaller.py -c -F E:\work\unity\xxx\trunk\tools\excel2json\excel2json.py
    报错。依赖pywin32


    2. 安装pywin32。http://sourceforge.net/projects/pywin32/files/pywin32/,下载后双击安装就可以。


    3. 再次cmd下运行。D:\soft\python\PyInstaller-2.1>python pyinstaller.py -c -F E:\work\unity\xxx\trunk\tools\excel2json\excel2json.py

        

        成功生成exe!


        

          生成的目标文件在pyinstaller文件夹下。<

posted @ 2017-04-23 20:23  jzdwajue  阅读(260)  评论(0编辑  收藏  举报