gpt4 book ai didi

Python 3.2.2,错误(脚本到 exe)

转载 作者:行者123 更新时间:2023-11-28 22:00:28 25 4
gpt4 key购买 nike

您好,我按照此说明 (How can I use the py2exe to change the python3.2's code to 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")])

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

最佳答案

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

python setup.py build

我打赌你忘记了 build 部分。

*注意:我不是 100% 确定 build 是您想要的命令(自从我使用 cx_freeze 以来已经有一段时间了)。参见 the documentation .

关于Python 3.2.2,错误(脚本到 exe),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14820461/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com