把python脚本转成exe


安装py2exe
http://prdownloads.sourceforge.net/py2exe
下载所安装的Python对应的py2exe版本. 然后双击运行安装.



新建一个名为 mysetup.py 的文件,内容如下:

# mysetup.py
from distutils.core import setup
import py2exe


options= {"py2exe":
          {
              "compressed":1,
              "bundle_files":1
          }
         }


setup(
    options = options,
    zipfile=None,
    console=["test3.py"]
     )


注意: test3.py 就你要转成exe 的脚本文件.


然后在命令行下:


>mysetup.py py2exe

这样就在当前目录下生成以 build 和 dist 两个文件夹.   dirst 中有两个文件一个是  你的所要的exe 另外 一个是 w9xpopen.exe  .


参考:

http://blog.csdn.net/suiyunonghen/article/details/4033076

http://hi.baidu.com/bjdqe1024/blog/item/1de98cb01c516c7d8ad4b206.html


另外:

http://bbs.chinaunix.net/thread-1084663-1-1.html

pythonw.exe: w代表windows的意思,跑窗口程序的
w9xpopen。exe,w9x代表windows 9x系列程序,popen代表的是pipe open

你可能感兴趣的:(Python)