I'm trying to use cx_Freeze and everything everything seems like it should work fine, however I'm getting an import error for import tkinter

Traceback
#...
from tkinter import __fix
#...
import_tkinter
ImportError: DLL load failed: The specified module could not be found.

This only happens when I take the the contents "all of it" out of the C:/Python32/Scripts/distany directory, inside there it works fine. any insight?

EDIT: it appears this issue is resolved, however is there a way to make the program easier to access for the user when I make a zip of it and its dependencies, since there are so many?

is there a way to make cx_freeze utilize the no console property of .pyw files?

found the solution. On Windows vista in the command prompt enter:

C:/Python32/Scripts cxfreeze --base-name=Win32GUI theapplication.py

where theapplication.py is the name of your file

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.