Re: Creating single .exe file without py2exe and pyinstaller

2008-10-21 Thread oyster
you can try jungle ( http://www.suda-chen.biz/?page_id=21 ) also -- 已转发邮件 -- From: MRAB [EMAIL PROTECTED] To: python-list@python.org Date: Mon, 20 Oct 2008 15:47:55 -0700 (PDT) Subject: Re: Creating single .exe file without py2exe and pyinstaller On Oct 20, 4:48 pm, Larry

Re: Creating single .exe file without py2exe and pyinstaller

2008-10-20 Thread Larry Bates
Tino Wildenhain wrote: Hi, 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 it, using py2exe it created unnecessary files, that just increase the size of the program and also less portable to me. What

Re: Creating single .exe file without py2exe and pyinstaller

2008-10-20 Thread MRAB
On Oct 20, 4:48 pm, Larry Bates [EMAIL PROTECTED] wrote: Tino Wildenhain wrote: Hi, 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 it, using py2exe it created unnecessary files, that just

Re: Creating single .exe file without py2exe and pyinstaller

2008-10-20 Thread Gabriel Genellina
En Sun, 19 Oct 2008 01:45:16 -0200, Abah Joseph [EMAIL PROTECTED] escribió: 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

Re: Creating single .exe file without py2exe and pyinstaller

2008-10-19 Thread Tino Wildenhain
Hi, 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 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? the

Creating 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 --