您好我按照此说明(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")])
我是初学者,我不知道该怎么做。
答案 0 :(得分:5)
您必须将命令传递给setup.py
;在这种情况下,build
*:
python setup.py build
我打赌你忘记了build
部分。
*注意:我不是100%确定build
是您想要的命令(因为我使用了cx_freeze已经有一段时间了)。请参阅the documentation。