Error Message when opening python program created with cx Freeze -


i want make runnable program using python , cx_freeze.

the script uses csv, socket, ipaddress, threading , tkinter packages. when open tool see error message displayed below.

is problem imports? or doing wrong?

this how setup script looks like:

import sys cx_freeze import setup, executable  # dependencies automatically detected, might need fine tuning. build_exe_options = {"packages": ["tkinter","socket","csv","struct","threading","ipaddress"], "excludes": []}   # gui applications require different base on windows (the default # console application). base = none if (sys.platform == "win32"):     base = "win32gui"   setup(     name = "csv tool",     version = "0.1",     description = "tool work data create csv import ucmdb",     options = {"build_exe": build_exe_options},     executables = [executable("csv_tool.py", base = base)]) 

error message

ps: win8.1 64 bit system python3.4

thanks in advance help

as thomas commented, cx_freeze setup this site helps prevent error.


Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -