I've built a Python (2.7) app that uses Tkinter and am trying to build a Windows7 .exe using Pyinstaller (3.2). The app works find in windows is I run it as python myapp.py
, but once compiled into a pyinstaller distributable, I get this error message:
ImportError: No module named Tkinter
Just to be sure, the top of myapp.py contains:
from copy import deepcopy
import cPickle as pickle
import Tkinter as tk
from PIL import ImageTk
Checking the distribution directory, I see tk85.dll, tcl85.dll and two directories that see pertinent, tcl/ and tk/
I've found many references to secondary Tkinter dependencies, such as matplotlib which imports Tkinter itslef, but I've not found any details of a direct dependency like this.
Any ideas how to get this one working?