2005年09月20日 星期二 20:52
在网上也没看到什么很详细的实用的教程和资料~ 请知道的大虾能给我一些关于py2exe的使用方法的较为详细的资料~~不胜感谢~~ iado -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050920/e0e0693b/attachment.html
2005年09月20日 星期二 20:57
3. 将你的Python脚本转换为Windows exe程序 from:: [image: [WWW]] http://blog.huangdong.com <http://blog.huangdong.com/>(即将成为历史的HD的个人blog,大家默哀) [image: :)] 将Python的脚本变为一个可以执行的Windows exe程序可能的好处会说出很多,我最喜欢的则是它会让你写的程序更像是一个"程序"罢。但是,凡事有利就有弊,这样必然会让python的一些好处没有了。 你可以从这里找到[image: [WWW]] *py2exe*<http://starship.python.net/crew/theller/py2exe/> 的相关信息,可以在这里下载到[image: [WWW]] *py2exe*-0.4.2.win32-py2.3.exe<http://prdownloads.sourceforge.net/py2exe/py2exe-0.4.2.win32-py2.3.exe?download>安装包。 但是它的使用也还是比较麻烦的,需要你自己手工的写一个小的脚本,就像这样: Toggle line numbers<http://wiki.woodpecker.org.cn/moin/PyTips?highlight=%28Py2Exe%29#> 1 # setup.py 2 from distutils.core import setup 3 import *py2exe* 4 5 setup(name="myscript", 6 scripts=["myscript.py"], 7 ) 再通过python的执行: python setup.py *py2exe* 来使用。更多的信息上它的网站看罢。 详细见:http://wiki.woodpecker.org.cn/moin/PyTips 在05-9-20,zhaomobile <zhaomobile at sohu.com> 写道: > > 在网上也没看到什么很详细的实用的教程和资料~ > 请知道的大虾能给我一些关于py2exe的使用方法的较为详细的资料~~不胜感谢~~ > iado > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- Blog:http://www.donews.net/changzheng -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050920/a686e888/attachment.htm
2005年09月20日 星期二 21:10
http://lj0508.bokee.com/1333243.html On 9/20/05, 清风 <paradise.qingfeng at gmail.com> wrote: > 3. 将你的Python脚本转换为Windows exe程序 > > from:: [image: [WWW]] http://blog.huangdong.com > <http://blog.huangdong.com/>(即将成为历史的HD的个人blog,大家默哀) [image: > :)] > > 将Python的脚本变为一个可以执行的Windows > exe程序可能的好处会说出很多,我最喜欢的则是它会让你写的程序更像是一个"程序"罢。但是,凡事有利就有弊,这样必然会让python的一些好处没有了。 > > 你可以从这里找到[image: [WWW]] > *py2exe*<http://starship.python.net/crew/theller/py2exe/> > 的相关信息,可以在这里下载到[image: [WWW]] > *py2exe*-0.4.2.win32-py2.3.exe<http://prdownloads.sourceforge.net/py2exe/py2exe-0.4.2.win32-py2.3.exe?download>安装包。 > 但是它的使用也还是比较麻烦的,需要你自己手工的写一个小的脚本,就像这样: > Toggle line > numbers<http://wiki.woodpecker.org.cn/moin/PyTips?highlight=%28Py2Exe%29#> > > 1 # setup.py > 2 from distutils.core import setup > 3 import *py2exe* > 4 > 5 setup(name="myscript", > 6 scripts=["myscript.py"], > 7 ) > > 再通过python的执行: > > python setup.py *py2exe* > > 来使用。更多的信息上它的网站看罢。 > > 详细见:http://wiki.woodpecker.org.cn/moin/PyTips > > > 在05-9-20,zhaomobile <zhaomobile at sohu.com> 写道: > > > > 在网上也没看到什么很详细的实用的教程和资料~ > > 请知道的大虾能给我一些关于py2exe的使用方法的较为详细的资料~~不胜感谢~~ > > iado > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > -- > Blog:http://www.donews.net/changzheng >
2005年09月20日 星期二 21:31
梅劲松,您好! 我这几天怎么没有邮件呢?郁闷/。 在 2005-09-20 09:13:00 您写道: >踏踏实实写程序,兢兢业业做人! > >在 05-9-20,Robert Chen<search.pythoner at gmail.com> 写道: >> >> > 乖乖咙的咚,这才一天没收邮件,就有那么多讨论了,哈哈,好热闹啊 :) >> > >> >> >> _______________________________________________ >> python-chinese list >> python-chinese at lists.python.cn >> http://python.cn/mailman/listinfo/python-chinese >> >> >> > > >-- >梅劲松 >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese 致 礼! cry zyqmail at tom.com
2005年09月20日 星期二 21:47
这种问题一般就回答: TiosnG There is a site named Google! 有一个网站叫google 有价值的问题,会引发大家的思考, 使用性问题,只会令人哀叹中国人的丑陋………… 在 05-9-20,missv<lj0508 at gmail.com> 写道: > http://lj0508.bokee.com/1333243.html > > On 9/20/05, 清风 <paradise.qingfeng at gmail.com> wrote: > > 3. 将你的Python脚本转换为Windows exe程序 > > > > from:: [image: [WWW]] http://blog.huangdong.com > > <http://blog.huangdong.com/>(即将成为历史的HD的个人blog,大家默哀) [image: > > :)] > > > > 将Python的脚本变为一个可以执行的Windows > > exe程序可能的好处会说出很多,我最喜欢的则是它会让你写的程序更像是一个"程序"罢。但是,凡事有利就有弊,这样必然会让python的一些好处没有了。 > > > > 你可以从这里找到[image: [WWW]] > > *py2exe*<http://starship.python.net/crew/theller/py2exe/> > > 的相关信息,可以在这里下载到[image: [WWW]] > > *py2exe*-0.4.2.win32-py2.3.exe<http://prdownloads.sourceforge.net/py2exe/py2exe-0.4.2.win32-py2.3.exe?download>安装包。 > > 但是它的使用也还是比较麻烦的,需要你自己手工的写一个小的脚本,就像这样: > > Toggle line > > numbers<http://wiki.woodpecker.org.cn/moin/PyTips?highlight=%28Py2Exe%29#> > > > > 1 # setup.py > > 2 from distutils.core import setup > > 3 import *py2exe* > > 4 > > 5 setup(name="myscript", > > 6 scripts=["myscript.py"], > > 7 ) > > > > 再通过python的执行: > > > > python setup.py *py2exe* > > > > 来使用。更多的信息上它的网站看罢。 > > > > 详细见:http://wiki.woodpecker.org.cn/moin/PyTips > > > > > > 在05-9-20,zhaomobile <zhaomobile at sohu.com> 写道: > > > > > > 在网上也没看到什么很详细的实用的教程和资料~ > > > 请知道的大虾能给我一些关于py2exe的使用方法的较为详细的资料~~不胜感谢~~ > > > iado > > > > > > _______________________________________________ > > > python-chinese list > > > python-chinese at lists.python.cn > > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > > > > > > > -- > > Blog:http://www.donews.net/changzheng > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- [Time is unimportant, only life important!]
2005年09月21日 星期三 08:35
在 05-9-20,zhaomobile<zhaomobile at sohu.com> 写道: > > 在网上也没看到什么很详细的实用的教程和资料~ > 请知道的大虾能给我一些关于py2exe的使用方法的较为详细的资料~~不胜感谢~~ > 在py2exe的wiki中有许多实例,而且下载安装py2exe后它也带例子。同时最新的版本是0.6.2 -- I like python! My Donews Blog: http://www.donews.net/limodou
2005年09月21日 星期三 09:21
我不想回答此类问题,为了证实。我刚在在google上找到了一大堆py2exe的使用方法。 在 05-9-21,limodou<limodou at gmail.com> 写道: > 在 05-9-20,zhaomobile<zhaomobile at sohu.com> 写道: > > > > 在网上也没看到什么很详细的实用的教程和资料~ > > 请知道的大虾能给我一些关于py2exe的使用方法的较为详细的资料~~不胜感谢~~ > > > > 在py2exe的wiki中有许多实例,而且下载安装py2exe后它也带例子。同时最新的版本是0.6.2 > > -- > I like python! > My Donews Blog: http://www.donews.net/limodou > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 梅劲松
Zeuux © 2025
京ICP备05028076号