sasha0121
sasha0121

Reputation: 1

Is Tkinter included with Python 2.5?

I have downloaded python 2.5. I would like to know if Tkinter is included with python or is it a separate download?

Upvotes: 0

Views: 1149

Answers (2)

FossArduino
FossArduino

Reputation: 171

If you are using linux just open your terminal and type python and in the python interpreter type from Tkinter import* if it doesn't show any error messages you are good to go. You can try this to check every package of python like Pygame just replace Tkinter by Pygame

Upvotes: 0

Anders
Anders

Reputation: 6218

Yes, it is included.

http://wiki.python.org/moin/TkInter

Upvotes: 4

Related Questions