Re: How to make executable file ?

2005-01-05 Thread Andrew Robert
BOOGIEMAN wrote: Just how to make *.exe file from python code ?? I typed this : a, b = 0, 1 while b 1000: print b, a, b = b, a+b and saved it as pyt.txt Now, how do I make pyt.exe file ??? I want to run it on windows where isn't installed python. You may want to try cx_freeze.

Re: How to make executable file ?

2005-01-05 Thread Catalin Lungu
Also, you can try with py2exe. It's very easy. Catalin. Andrew Robert [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] BOOGIEMAN wrote: Just how to make *.exe file from python code ?? I typed this : a, b = 0, 1 while b 1000: print b, a, b = b, a+b and saved it as

Re: How to make executable file ?

2005-01-05 Thread Fuzzyman
An alternative way is to use Movable Python. It's a frozen distribution of python that can run without being 'installed'. See http://sourceforge.net/projects/movpy To display things in a 'window' you'll need to use a GUI toolkit like Tkinter or wxPython. Regards, Fuzzy

RE: How to make executable file ?

2005-01-05 Thread Gabriel Cosentino de Barros
Title: RE: How to make executable file ? Also, you can try with py2exe. It's very easy. Catalin. You may want to try cx_freeze. I brief experience with both. may be helpful 1. I did a little program on python/TK. Some 100 lines or less 2. executed cx_freeze 3. executed py2exe

How to make executable file ?

2005-01-02 Thread BOOGIEMAN
Just how to make *.exe file from python code ?? I typed this : a, b = 0, 1 while b 1000: print b, a, b = b, a+b and saved it as pyt.txt Now, how do I make pyt.exe file ??? I want to run it on windows where isn't installed python. --

Re: How to make executable file ?

2005-01-02 Thread Gian Mario Tagliaretti
BOOGIEMAN wrote: [...] and saved it as pyt.txt Maybe pyt.py is better :) Now, how do I make pyt.exe file ??? I want to run it on windows where isn't installed python. Have a look at py2exe: http://starship.python.net/crew/theller/py2exe/ don't be scared when you see the dimension of the

Re: How to make executable file ?

2005-01-02 Thread BOOGIEMAN
On Sun, 02 Jan 2005 21:56:45 +0100, Gian Mario Tagliaretti wrote: don't be scared when you see the dimension of the files... 1.9 Mb for a console application ?! And is it possible to make Windows application ? I want to display results in windows message box. --

Re: How to make executable file ?

2005-01-02 Thread Maurice LING
Hi all, This may be OT but is there a way to do the same for *nix type of system? Like cast a python interpreter with scripts together? I'm running Mac OSX here. The only remote idea I have is to use jythonc to convert everything into .class files and package that as a .jar file but I can't do

Re: How to make executable file ?

2005-01-02 Thread Tim Jarman
Maurice LING wrote: Hi all, This may be OT but is there a way to do the same for *nix type of system? Like cast a python interpreter with scripts together? I'm running Mac OSX here. For OSX, google for py2app - for *nix in general, I believe freeze is your mman, although so many *nixen

Re: How to make executable file ?

2005-01-02 Thread Alex Martelli
Maurice LING [EMAIL PROTECTED] wrote: Hi all, This may be OT but is there a way to do the same for *nix type of system? Like cast a python interpreter with scripts together? Yes, but fortunately on the Mac you don't need that. I'm running Mac OSX here. Assuming we're talking Mac OS X