下载py2exe并安装,最新的是py2exe-2.1,只支持python 2.4-2.7
编写helloworld.py
print("Hello World!")
在py2exe安装目录新建文件setup.py,编写内容如下:
from distutils.core import setup import py2exe setup(console=[‘helloworld.py‘])
然后在命令行(cmd)执行:
python setup.py install
python setup.py py2exe
生成的程序在dist文件夹下面。
使用py2exe将python文件.py编译成可以执行文件.exe
原文地址:http://rain0382and520.blog.51cto.com/9508742/1566389