Py2exe help for beginner

Jonathan Ellis jbellis at gmail.com
Mon Nov 8 08:19:48 EST 2004


PeterFI wrote:

> my setup.py looks like this
>
> from distutils.core import setup
> import glob,os,sys
> import py2exe
>
>
> setup(name='MyIterator',
>       version='0.2',
>       author='P.P',
>       py_modules=["Iterator"])
>
> it runs nicely but no exe is created? What am I missing?
You're missing a "windows=" or "console=" argument.

-Jonathan




More information about the Python-list mailing list