0

Where can I download this programm?

kame
  • 20,848
  • 33
  • 104
  • 159

3 Answers3

4

Any recent version of Python should come with Tkinter support. To my knowledge, you shouldn't need to install anything else.

Michael Herold
  • 1,292
  • 1
  • 13
  • 22
2

As a standard python library, Tkinter is part of any standard Python installation. You can can get a standard python installation at http://www.python.org/download/.

Raphaël Saint-Pierre
  • 2,498
  • 1
  • 19
  • 23
-2

If you worked on linux , and you don't have the root privilege . You need to install python locally. You can't use like the following commands:

apt-get install python-tk
sudo apt-get install python-tk

You can get the tcl/tk right here http://www.tcl.tk/software/tcltk/download.html. And then refer to this Install tkinter and python locally

Community
  • 1
  • 1
Samuel
  • 5,977
  • 14
  • 55
  • 77
  • This is incorrect. You gave instructions for installing tk, not tkinter. – Bryan Oakley Aug 14 '12 at 12:33
  • sometimes ,if you don't have the privillege or you want to install them locally. you need to installl the tcl/tk by yourself. and then use the Python will generate the tkinter module – Samuel Aug 15 '12 at 00:50
  • while that may be true, your answer is pretty much useless for the person asking the question unless you show how. Explaining only half of the solution doesn't help anyone. – Bryan Oakley Aug 15 '12 at 00:52
  • thanks, I should ansower the queestion detailedly, Thanks for your suggessions – Samuel Aug 15 '12 at 01:26