python版本2.7
windows 7 32bit
py2exe版本0.6.10
依赖pywin32这个包,建议安装。
首先安装py2exe,使用easy_install安装。在cmd中输入:easy_install py2exe。(至于easy_install怎么安装可以谷歌下)
安装完成之后,首先把写好的python脚本都放在一个文件夹中例如:C:/test/
然后,在这个文件夹中新建一个setup.py文件,内容如下:
#coding=utf-8
'''
@author: Administrator
'''
from distutils.core import setup
import py2exe
setup(windows=[{"script":"YoursMain.py"}], options={"py2exe":{"includes":["sip"]}})
然后在cmd中进入test文件夹,输入:python setup.py py2exe
正常情况可以直接打包成exe文件,且在test文件夹中生成的dist中。
但是实际会发生很多错误情况。对于发生的错误,可以在搜索引擎中查找解决方案,也可在博文下方给我留言~