2004年02月25日 星期三 17:14
最近我使用Python 2.3.3 (PythonWin163)编制了一个脚本程序,其中用到了Tkinter和Pygist两个模块。哪位老师能推荐一个简单的方法将这个脚本编译成Win98下可直接运行的exe文件?在没有安装Python的机器上如何运行这种exe文件? _________________________________________________________ Do You Yahoo!? 完全免费的雅虎电邮,马上注册获赠额外60兆网络存储空间 http://cn.rd.yahoo.com/mail_cn/tag/?http://cn.mail.yahoo.com
2004年02月25日 星期三 17:24
Hello CHEN, py2exe http://starship.python.net/crew/theller/py2exe/ 最方便! 专门为Win32 发行设计的!能够自动提取需要的所有包, 仅仅需要写一个安装文件: """ # setup.py from distutils.core import setup import glob import py2exe setup(console=["myscript.py"], data_files=[("bitmaps", ["bm/large.gif", "bm/small.gif"]), ("fonts", glob.glob("fonts\\*.fnt"))], ) """ === [ 17:14 ; 04-02-25 ] you wrote: CGO> 最近我使用Python 2.3.3 CGO> (PythonWin163)编制了一个脚本程序,其中用到了Tkinter和Pygist两个模块。哪位老师能推荐一个简单的方法将这个脚本编译成Win98下可直接运行的exe文件?在没有安装Python的机器上如何运行这种exe文件? CGO> _________________________________________________________ CGO> Do You Yahoo!? CGO> 完全免费的雅虎电邮,马上注册获赠额外60兆网络存储空间 CGO> http://cn.rd.yahoo.com/mail_cn/tag/?http://cn.mail.yahoo.com CGO> _______________________________________________ CGO> python-chinese mailing list CGO> python-chinese at lists.python.cn CGO> http://python.cn/mailman/listinfo/python-chinese === === === === === === === === === === -- Best regards, Zoom.Quiet /=======================================\ ]Time is unimportant, only life important![ \=======================================/
Zeuux © 2024
京ICP备05028076号