Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

when i type from Tkinter import ttk it say that there is no module named ttk and also on many websites online the t in tkinter is always lowercase but when i type tkinter in python it throws an error. why is that?

share|improve this question

2 Answers

To use ttk from Python, you need a separate download and install which you can find here.

Python is case-sensitive (like most programming languages), but "many websites" are not (like most human beings) so it's a perfectly understandable sloppiness on those "many websites"' part to spell Tkinter in the wrong case. Hey, you yourself break English rules by using lower case in words starting sentences, twice in your short question, you should sympathize with the use of wrong casing in those "many websites", and definitely shouldn't be surprised by it!

share|improve this answer
Thanks for that answer, i for got that i wasn't the only lazy one, but i was wondering on the site that you gave a link to what should I click on to download ttk? I saw more than one thing to download and i wasn't sure which to pick. – G.SINGH Jun 21 '10 at 1:58
@g.singh, best is probably pypi.python.org/pypi/pyttk -- pypi is often the best repo from which to download Python extensions. Note that it's a .tar.gz file so after download you'll have to unpack it and install it "manually" (python setup.py install with your favorite Python >= 2.5). Before installing you'll also need ttk separately installed with the Tcl-Tk installation you're using, of course (pyttk is the Python interface to ttk, it is not the ttk functionality itself). – Alex Martelli Jun 21 '10 at 15:11
pip install pyttk worked for me. – brianpeiris Apr 30 at 2:44

Tkinter in python 2.6 is capitalized, in python 3 it is lowercase, tkinter

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.