0

Can anybody explain what this error means and how I can fix it?

error message

Here is the code for the 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)])

Thanks!

Zaid Saeed
  • 201
  • 1
  • 3
  • 10
  • Maybe [this](https://stackoverflow.com/questions/4676433/solving-dll-load-failed-1-is-not-a-valid-win32-application-for-pygame) helps? – hlt Aug 10 '14 at 20:27
  • 1
    That error usually means you're mixing 32-bit and 64-bit applications/libraries. – Thomas K Aug 10 '14 at 22:26

0 Answers0