Python tkinter:Can';不能用cmd编译吗?

Python tkinter:Can';不能用cmd编译吗?,python,cmd,tkinter,python-3.3,cx-freeze,Python,Cmd,Tkinter,Python 3.3,Cx Freeze,我已经用cx_freeze(3.3)在.exe中编译了程序,但知道在cmd中它显示了一个错误: c:\python33\lib\distutils\dist.py:257: UserWarning :Unknown distribution option: 'executable' warning.warn(msg) running build 我已经尝试卸载并重新安装cx\U freeze,但它仍然显示此错误 下面是我在命令行中调用的内容: c:\Python33\python.exe s

我已经用cx_freeze(3.3)在.exe中编译了程序,但知道在cmd中它显示了一个错误:

c:\python33\lib\distutils\dist.py:257: UserWarning :Unknown distribution option:
'executable' 
warning.warn(msg)
running build
我已经尝试卸载并重新安装cx\U freeze,但它仍然显示此错误

下面是我在命令行中调用的内容:

c:\Python33\python.exe setup.py build
这是我的setup.py文件:

from cx_Freeze import setup, Executable 

setup (
    name = "" , 
    version = "0.1", 
    description = "", 
    executables = [Executable("")] ,
)

任何帮助都将不胜感激

您能告诉我们您在命令行中键入的内容或任何设置文件吗?从错误消息来看,问题可能在于如何在smd中构建exemy命令:c:\Python33\python.exe setup.py buildfrom cx\u Freeze import setup,Executable setup(name=“”,version=“0.1”,description=“”,executables=[Executable(“”))(所有内容都正确插入)