4

私は次のような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を実行しています。

4

1 に答える 1

3

ファイルがあるフォルダに移動して、次のコマンドを実行する必要があります。

C:\Python27\mydir> python setup.py py2exe

または直接

C:\Python27\mydir> setup.py py2exe

トレースバックは、コマンドラインでsetup.pyのコマンド(私の例では「py2exe」)を送信していないことを示しています。

次のコマンドで使用可能なコマンドを確認できます。

C:\Python27\mydir>setup.py --help-commands
Standard commands:
  build            build everything needed to install
  build_py         "build" pure Python modules (copy to build directory)
  build_ext        build C/C++ extensions (compile/link to build directory)
  build_clib       build C/C++ libraries used by Python extensions
  build_scripts    "build" scripts (copy and fixup #! line)
  clean            clean up temporary files from 'build' command
  install          install everything from build directory
  install_lib      install all Python modules (extensions and pure Python)
  install_headers  install C/C++ header files
  install_scripts  install scripts (Python or otherwise)
  install_data     install data files
  sdist            create a source distribution (tarball, zip file, etc.)
  register         register the distribution with the Python package index
  bdist            create a built (binary) distribution
  bdist_dumb       create a "dumb" built distribution
  bdist_rpm        create an RPM distribution
  bdist_wininst    create an executable installer for MS Windows
  upload           upload binary package to PyPI
  check            perform some checks on the package
  py2exe

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


C:\Python27\mydir>
于 2012-06-07T18:38:52.770 に答える