2006年9月7日
摘要: 下面把hello.py转换成exe执行文件。1、hello world 例子 1 print "Hello World!"2 下载:hello.py2、配置文件(setup.py) 1 from distutils.core import setup2 import py2exe3 4 setup(console=['hello.py'])5 如果要转换其他的python文件,可以把... 阅读全文
posted @ 2006-09-07 20:15 FireYang 阅读(876) 评论(0) 推荐(0) 编辑