私は次のようなtest.pyという名前の非常に単純なプログラムを作成しました。
print 'hello world'
次に、次のようなsetup.pyというセットアッププログラムを作成しました。
from distutils.core import setup
import py2exe
setup(console=['test.py'])
それらは両方とも同じフォルダにあるので、動作するはずです。setup.pyを実行すると、次のようなエラーメッセージが表示されます。
C:\Python26\lib\sets.py:85: DeprecationWarning: functions overriding warnings.showwarning() must support the 'line' argument
stacklevel=2)
Traceback (most recent call last):
File "C:\Users\python2.6\Desktop\program\pygametests\setup.py", line 5, in <module>
setup(console=['test.py'])
File "C:\Python26\lib\distutils\core.py", line 140, in setup
raise SystemExit, gen_usage(dist.script_name) + "\nerror: %s" % msg
SystemExit: usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: no commands supplied
WindowsVistaを実行しています。