Re: How to create an exe-file?

2008-04-06 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > a good thing about python is the portability though. but u cant make > an exe that can be used on mac too, ie one exe fpr both? you can create a portable python archive, but EXE files are windows only. > if i want to make an exe for mac, what do i need? see the second

Re: How to create an exe-file?

2008-04-06 Thread Diez B. Roggisch
[EMAIL PROTECTED] schrieb: > On 6 Apr, 22:50, Fredrik Lundh <[EMAIL PROTECTED]> wrote: >> [EMAIL PROTECTED] wrote: >>> how do you create exe-files of your python-code? >>> is it different depending on what libraries, GUI-frameworks you use? >>> i want to create an exe-file of a pythonscript that us

Re: How to create an exe-file?

2008-04-06 Thread skanemupp
On 6 Apr, 22:50, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > how do you create exe-files of your python-code? > > > is it different depending on what libraries, GUI-frameworks you use? > > > i want to create an exe-file of a pythonscript that uses Tkinter. > > assuming w

Re: How to create an exe-file?

2008-04-06 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > how do you create exe-files of your python-code? > > is it different depending on what libraries, GUI-frameworks you use? > > i want to create an exe-file of a pythonscript that uses Tkinter. assuming windows only, you want: http://www.py2exe.org/ also see: http://

How to create an exe-file?

2008-04-06 Thread skanemupp
how do you create exe-files of your python-code? is it different depending on what libraries, GUI-frameworks you use? i want to create an exe-file of a pythonscript that uses Tkinter. -- http://mail.python.org/mailman/listinfo/python-list