Hi,

I'm freezing a script on OS X and I am getting the error:
Missing Modules:
? multiprocessing.get_start_method imported from multiprocessing.spawn
When Running the app i get the following error:

NameError: name 'multiprocessing' is not defined

I am using python 3.4 on OS X.

My setup.py looks like:

> application_title = "Application" #what you want to application to be
> called
> main_python_file = "./app/App.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", "tkinter", "multiprocessing"]
> setup(
>         name = application_title,
>         version = "0.1",
>         description = "App Description",
>         options = {"build_exe" :{"includes" : includes } },
>         executables = [Executable(main_python_file, base = base,
> icon="./resources/logo.icns")])


Kind Regards,

Dean Chester
------------------------------------------------------------------------------
Put Bad Developers to Shame
Dominate Development with Jenkins Continuous Integration
Continuously Automate Build, Test & Deployment 
Start a new project now. Try Jenkins in the cloud.
http://p.sf.net/sfu/13600_Cloudbees
_______________________________________________
cx-freeze-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to