When I run the file called gui.py that contains this:
from Tkinter import * root = Tk() root.title("Simple GUI") root.geometry("200x100")
I get this back:
python gui.py
Traceback (most recent call last):
File "gui.py", line 1, in ?
from Tkinter import *
File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/lib-tk/Tkinter.py", line 38, in ?
import _tkinter # If this fails your Python may not be configured for Tk
ImportError: No module named _tkinter
I have looked everywhere on the net, and can't figure out how to configure python so that Tkinter will work with it. Any help would be appreciated.
Mike
-- http://mail.python.org/mailman/listinfo/python-list