Problems Finding and installing Tkinter

Fredrik Lundh fredrik at pythonware.com
Mon Nov 29 06:01:05 EST 1999


Jim Cochrane <jtc at dimensional.com> wrote:
>     import _tkinter # If this fails your Python is not configured for Tk
> 
> ImportError: /usr/X11R6/lib/libtk8.0.so: undefined symbol: panic
> 
> So it's not finding a symbol named "panic".  I have no idea what library
> this should be in.

libtcl8.0.so, most likely:

    $ nm libtk8.0.so | grep panic
             U panic
    $ nm libtcl8.0.so | grep panic
    0000afac T panic
    0005af58 D panicProc

</F>

<!-- (the eff-bot guide to) the standard python library:
http://www.pythonware.com/people/fredrik/librarybook.htm
-->





More information about the Python-list mailing list