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