Install Tkinter in Python

  • Post category:Tkinter

In this Tkinter tutorial, you will learn how to install Tkinter in Python. You can use either pip or conda to install it on Windows.

Install Tkinter using Pip

pip install tk

Install Tkinter using Conda

conda install -c anaconda tk

You can check that Tkinter is properly installed or not by using the following code. It will open a new window.

import tkinter
tkinter._test()

Output:

Free resources to learn advanced skills: AiHints and CodeAllow