KirkD-CO
KirkD-CO

Reputation: 1793

PyInstaller: "No module named Tkinter"

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?

Upvotes: 5

Views: 6656

Answers (3)

AnGus King
AnGus King

Reputation: 31

I had an extension to this problem. Including Tkinter in the list of hiddenimports enabled me to display plots but I could not save them. By adding FileDialog, tkFileDialog and tkMessageBox into hidden imports in my spec file solved the problem. That is, hiddenimports=['FileDialog', 'Tkinter', 'tkFileDialog', 'tkMessageBox', ]

Angus

Upvotes: 0

Repiklis
Repiklis

Reputation: 399

Check https://github.com/pyinstaller/pyinstaller/issues/1584. There is an issue with the PIL hook, which excludes the tkinter module.

One solution is to modify the hook file hook-PIL.py located in YourPythonFolder\Lib\site-packages\PyInstaller\hooks by removing the modname_tkinter from excludedimports.

Or just change the order of the import statements in your code. Do:

from PIL import ImageTk
import Tkinter as tk

Upvotes: 2

glls
glls

Reputation: 2403

Have you checked: https://github.com/pyinstaller/pyinstaller/issues/1877 (or other issues)? https://github.com/pyinstaller/pyinstaller/wiki/If-Things-Go-Wrong

quote from issue 1877 "It looks like the hook-_tkinter.py is not able to handle custom compiled Tk." Possible workaround: "Thanks, after installed tkinter, tix, tcl-devel and tk-devel using yum installation, It's now work fine. "

Otherwise, Py2exe is also an option for creating a .exe file, and i have used it plenty of times with tkinter with no issues.

Upvotes: 0

Related Questions