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)])
ps: win8.1 64 bit system python3.4
thanks in advance help
as thomas commented, cx_freeze setup this site helps prevent error.
Comments
Post a Comment