当cx_Freeze在主脚本中给出错误时,这意味着什么?

时间:2014-08-10 20:25:30

标签: python python-3.x pygame cx-freeze

有人可以解释这个错误的含义以及如何解决它吗?

error message

以下是setup.py

的代码
application_title = "ZombieAttak" #what you want to application to be called
main_python_file = "main.py" #the name of the python file you use to run the program

import sys

from cx_Freeze import setup, Executable

base = None
if sys.platform == "win32":
    base = "Win32GUI"

includes = ["atexit","re"]

setup(
        name = application_title,
        version = "0.1",
        description = "Sample cx_Freeze PyQt4 script",
        options = {"build_exe" : {"includes" : includes }},
        executables = [Executable(main_python_file, base = base)])

谢谢!

0 个答案:

没有答案