2

Hello i follow this instructions (How can I use the py2exe to change the python3.2's code to exe) to create exe form python scripts(version 3.2.2), but it report me an error:

Traceback (most recent call last):
  File "C:\Python32\Scripts\setup.py", line 7, in <module>
    executables = [Executable("ochranka.py")])
  File "C:\Python32\lib\site-packages\cx_Freeze\dist.py", line 365, in setup
    distutils.core.setup(**attrs)
  File "C:\Python32\lib\distutils\core.py", line 136, 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

This is my setup.py file:

from cx_Freeze import setup, Executable
setup(
    name = "Ochranka",
    version = "1.0",
    description = "test",
    executables = [Executable("ochranka.py")])

I am a beginner, I do not know what to do with it.

4

1 に答える 1

5

にコマンドを渡す必要がありsetup.pyます。この場合、build*:

python setup.py build

その部分を忘れているに違いないbuild

*注:buildご希望のコマンドが 100% 正しいとは限りません (cx_freeze を使用してからしばらく経ちます)。ドキュメントを参照してください。

于 2013-02-11T20:50:57.023 に答える