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 to include > that huge dll and libraries. That's the Python interpreter environment, and the standard Python library that is made available in the Python environment. Without them, your program isn't executable. What were you hoping for? -- \ "If trees could scream, would we be so cavalier about cutting | `\ them down? We might, if they screamed all the time, for no good | _o__) reason." -- Jack Handey | Ben Finney -- http://mail.python.org/mailman/listinfo/python-list