Friday, October 3, 2025
HomeLanguagesHow to Install Tkinter in Windows?

How to Install Tkinter in Windows?

In this article, we will look into the various methods of installing Tkinter on a Windows machine.

Note: Python already comes bundled with Tkinter. But if you still face any error with Tkinter, follow along with the article for manual installation.

Prerequisite:

For PIP Users: 

Open up the command prompt and use the below command to install Tkinter:

pip install tk

The following message will be displayed once the installation is completed:

installing tkinter using pip

To verify the installation use the tk._test() function. Use the below screenshots for reference:

Python3




import tkinter
tkinter._test()


Output:

verifying Tkinter installation

For conda Users:

Conda users can open up the Anaconda Power Shell and use the below command to install Tkinter:

conda install -c anaconda tk

You will get the following message once the installation is completed:

installing Tkinter using conda

To verify the installation run the below code:

Python3




import tkinter
tkinter._test()


Output:

verifying Tkinter installation

RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11929 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS