下載py2exe並安裝,最新的是py2exe-2.1,只支持python 2.4-2.7
python
編寫helloworld.pyide
print("Hello World!")
在py2exe安裝目錄新建文件setup.py,編寫內容以下:命令行
from distutils.core import setup import py2exe setup(console=['helloworld.py'])
而後在命令行(cmd)執行:cmd
python setup.py installit
python setup.py py2execonsole
生成的程序在dist文件夾下面。
class