Tkinter TclError can't find package Tix

4.3k Views Asked by At

This question is similar to this other question.

When I run the following code on Mac OS X (it runs fine on Windows):

import Tix 
root = Tix.Tk()

I get the following error message:

Traceback (most recent call last): File "", line 1, in File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tix.py", line 221, in init self.tk.eval('package require Tix') _tkinter.TclError: can't find package Tix

The Python docs described the issue, but the answer below was not helpful in my case:

If this fails, you have a Tk installation problem which must be resolved before proceeding. Use the environment variable TIX_LIBRARY to point to the installed Tix library directory, and make sure you have the dynamic object library (tix8183.dll or libtix8183.so) in the same directory that contains your Tk dynamic object library (tk8183.dll or libtk8183.so). The directory with the dynamic object library should also have a file called pkgIndex.tcl (case sensitive), which contains the line:

package ifneeded Tix 8.1 [list load "[file join $dir tix8183.dll]" Tix]

If anyone has experienced this error and found a work-around, please fill me in.

1

There are 1 best solutions below

0
On

Based on Terry's Inquiry to Python.org user group:

  1. If you're on Mac OSX 64-bit you're pretty much out of luck.

  2. If you happen to have a 32-bit running and have Tcl installed you can simply install Tix using teacup (it's similar to pip and it comes installed with Tcl)

    sudo teacup install Tix

  3. Tix is outdated (widget style and documentation maintenance) and better off using Ttk.