Skip to content Skip to sidebar Skip to footer

Installation Of Tkinter

Where can I download this programm?

Solution 1:

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

Solution 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/.

Solution 3:

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

Post a Comment for "Installation Of Tkinter"