Re: [Tutor] Creating a single .exe file without py2exe and pyinstaller

2008-10-20 Thread Alan Gauld
"Abah Joseph" <[EMAIL PROTECTED]> wrote I have written a small application of about 40-45 lines which is about 4KB, so I want to create a single .exe file from it, using py2exe it created unnecessary files, that just increase the size of the program and also less portable to me. What kind

Re: [Tutor] Creating a single .exe file without py2exe and pyinstaller

2008-10-19 Thread Marc Tompkins
On Sun, Oct 19, 2008 at 9:26 AM, Chris Fuller <[EMAIL PROTECTED] > wrote: > > The freeze utillity, http://wiki.python.org/moin/Freeze, will do what you > want, on unixlikes, at least. It has its own set of caveats, of course. > You > need a C compiler, and preferably the same one that was used t

Re: [Tutor] Creating a single .exe file without py2exe and pyinstaller

2008-10-19 Thread Chris Fuller
The freeze utillity, http://wiki.python.org/moin/Freeze, will do what you want, on unixlikes, at least. It has its own set of caveats, of course. You need a C compiler, and preferably the same one that was used to compile the Python interpreter. I'm not sure if it works at all on Windoze. C

Re: [Tutor] Creating a single .exe file without py2exe and pyinstaller

2008-10-19 Thread Marc Tompkins
On Sun, Oct 19, 2008 at 7:51 AM, Robert Berman <[EMAIL PROTECTED]>wrote: > If you want a real exe rewrite it in C or C++. Python is an interpretive > language; my apologies to those who say it is 'semi-compilable'. > Let me re-word that a little bit. When you write an application in Python, you

Re: [Tutor] Creating a single .exe file without py2exe and pyinstaller

2008-10-19 Thread Robert Berman
If you want a real exe rewrite it in C or C++. Python is an interpretive language; my apologies to those who say it is 'semi-compilable'. Robert Berman Abah Joseph wrote: I have written a small application of about 40-45 lines which is about 4KB, so I want to create a single .exe file from

Re: [Tutor] Creating a single .exe file without py2exe and pyinstaller

2008-10-19 Thread DrBloodmoney
Pyinstaller: http://pyinstaller.python-hosting.com/ On Sun, Oct 19, 2008 at 12:59 AM, Abah Joseph <[EMAIL PROTECTED]> wrote: > > I have written a small application of about 40-45 lines which is about 4KB, > so I want to create a single .exe file from it, using py2exe it created > unnecessary file

[Tutor] Creating a single .exe file without py2exe and pyinstaller

2008-10-18 Thread Abah Joseph
I have written a small application of about 40-45 lines which is about 4KB, so I want to create a single .exe file from it, using py2exe it created unnecessary files, that just increase the size of the program and also less portable to me. What else can I use? I am on windows XP. Python 2.5 ___