Re: Convert python to exe

2005-03-15 Thread gene . tani
exemaker and bdist, too: http://effbot.org/downloads/index.cgi/exemaker-1.2-20041012.zip/README http://www.python.org/doc/2.2.3/dist/creating-wininst.html RM wrote: > Does cx_Freeze pack all dependencies? Would te resulting files(s) be > able to run on a Linux machine that does not have Python i

Re: Convert python to exe

2005-03-15 Thread RM
Does cx_Freeze pack all dependencies? Would te resulting files(s) be able to run on a Linux machine that does not have Python installed? If not, what alternatives are there to accomplish that? Is the McMillan installer still being maintained? Does it work for GUI applications? -Ruben Stephen

Re: Convert python to exe

2005-03-15 Thread [EMAIL PROTECTED]
Thanks. I'll try it . -- http://mail.python.org/mailman/listinfo/python-list

Re: Convert python to exe

2005-03-13 Thread [EMAIL PROTECTED]
Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: Convert python to exe

2005-03-13 Thread Stephen Thorne
On 13 Mar 2005 14:31:53 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi > > I have a python script under linux, I wonder if I can be converted to > an executable or not? Yes, you can use cx_Freeze. Regards, Stephen Thorne -- http://mail.python.org/mailman/listinfo/python-list

Re: Convert python to exe

2005-03-13 Thread [EMAIL PROTECTED]
I wonder if I get the executable like c program compiled by gcc -- http://mail.python.org/mailman/listinfo/python-list

Re: Convert python to exe

2005-03-13 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > I have a python script under linux, I wonder if I can be converted to > an executable or not? Place '#!/usr/bin/env python' as the first line of your script and type:: chmod u+x yourscript.py at the command line. ;-) Ciao, Marc 'Bla

Convert python to exe

2005-03-13 Thread [EMAIL PROTECTED]
Hi I have a python script under linux, I wonder if I can be converted to an executable or not? Richard -- http://mail.python.org/mailman/listinfo/python-list