py to exe: suggestions?

2005-08-28 Thread chris patton
I need to convert a python file to an '.exe'. I've tried py2exe, and I don't like it because you have to include that huge dll and libraries. Thanks for the Help!! -- http://mail.python.org/mailman/listinfo/python-list

Re: py to exe: suggestions?

2005-08-28 Thread Sybren Stuvel
chris patton enlightened us with: > I need to convert a python file to an '.exe'. I've tried py2exe, and > I don't like it because you have to include that huge dll and > libraries. Then what would you expect? The whole Python interpreter is needed if you want to run Python programs. It's more a s

Re: py to exe: suggestions?

2005-08-28 Thread Ben Finney
chris patton <[EMAIL PROTECTED]> wrote: > I need to convert a python file to an '.exe'. A Python program is executable only in the context of a Python interpreter. Python is a dynamic language; it can't be compiled to native machine code. > I've tried py2exe, and I don't like it because you have

Re: py to exe: suggestions?

2005-08-28 Thread gene tani
There's movpy, w/option to exclude Unicode/win98 capabilities: http://www.voidspace.org.uk/python/movpy/ Also: http://www.effbot.org/zone/exemaker.htm http://www.python.org/doc/current/dist/postinstallation-script.html http://www.jython.org/docs/differences.html Ben Finney wrote: > chris patton

Re: py to exe: suggestions?

2005-08-28 Thread Bugs
If your users already have Python installed then you could just create a self-extracting, self-executing .exe that contains only your scripts and necessary files. I belive many of the popular zip utilities have the ability to do this. The free info-zip does this as well: http://www.info-zip.o

Re: py to exe: suggestions?

2005-08-28 Thread Ron Adam
chris patton wrote: > I need to convert a python file to an '.exe'. I've tried py2exe, and I > don't like it because you have to include that huge dll and libraries. > > Thanks for the Help!! Do you want to create an exe to give to others, or so that you can use it in windows easier just like a

Re: py to exe: suggestions?

2005-08-30 Thread Ivan Shevanski
Not sure if you already got the answer to this lol but since this is one thing about python i do know how to do, use CXFreeze. Its basicly a combination of all the programs you have already tryed. Works great for me =D sorry I dont have a link, just google it. -Ivan __

Re: py to exe: suggestions?

2005-09-01 Thread Fredrik Lundh
Ivan Shevanski wrote: > Not sure if you already got the answer to this lol but since this is one > thing about python i do know how to do, use CXFreeze. Its basicly a > combination of all the programs you have already tryed. Works great for me > =D sorry I dont have a link, just google it. it's