2

您好,我按照此说明(如何使用 py2exe 将 python3.2 的代码更改为 exe)创建 exe 形式的 python 脚本(版本 3.2.2),但它报告我一个错误:

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

这是我的 setup.py 文件:

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

我是初学者,我不知道该怎么办。

4

1 回答 1

5

您必须将命令传递给setup.py; 在这种情况下,build*:

python setup.py build

我敢打赌你忘了这build部分。

*注意:我不是 100% 确定build你想要的命令(我使用 cx_freeze 已经有一段时间了)。请参阅文档

于 2013-02-11T20:50:57.023 回答