1.安装对应python版本的py2exe
2.假设你要生成test.py脚本的exe文件
新建一个setup.py,在里面输入如下代码
1 #!/usr/bin/python 2 from distutils.core import setup 3 import py2exe 4 import os,sys 5 6 CurrentPath = os.path.dirname(sys.argv[0]) 7 setup(console=[str(CurrentPath)+'test.py'])
保存退出
3.打开cmd,输入命令
python setup.py py2exe
成功后在dist文件夹中就会生成exe文件了。