I need help with a py2exe example I am working on to get the basics. The example is:
I type this in and then I get the error message:
What I want to know is what does this mean and what is the Setup() command do.
Thanks for any help.
Code:
# setup.py from distutils.core import setup import py2exe setup(name="wxTail",scripts=["wxTail.py"],)
Code:
Traceback (most recent call last):
File "<pyshell#2>", line 1, in -toplevel-
setup(name="wxTail",scripts=["wxTail.py"],)
File "C:\Python24\lib\distutils\core.py", line 137, in setup
raise SystemExit, gen_usage(dist.script_name) + "\nerror: %s" % msg
SystemExit: usage: [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: --help [cmd1 cmd2 ...]
or: --help-commands
or: cmd --help
error: no commands supplied
Thanks for any help.
Comment