Re: How to use py2exe ...

2008-01-21 Thread Mike Driscoll
On Jan 21, 1:45 am, Santiago Romero <[EMAIL PROTECTED]> wrote: > Hi... > > I'm a Linux user, and I would like some windows-friends to test a > game I'm writing with python+pygame without they needing to install > python, pygame, and so on. > > I've heard about py2exe and pygame2exe, but I'm not

Re: How to use py2exe ...

2008-01-21 Thread DHR
Here is how I am creating my win32 exe with py2exe: 1. create a setup.py file with the following: from distutils.core import setup import py2exe #setup(console=['main_script.py']) setup(windows=['main_script.py'] ) 2. run the following command from console: 'python setup.py py2exe' Hope this hel