- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to use pip or easy_install Tkinter on Windows?
Tkinter is a Python library that is used to develop desktop-based GUI applications. In order to develop a Tkinter application, we have to make sure that Python is installed in our local system. We can install Tkinter in our local machine by using the pip install tkinter command in the Command Prompt or shell.
Once we enter the command pip install tkinter in the command shell, it will just start running the process of installing Tkinter in the local system.
First, we will make sure that Python is installed in our system. In order to check if Python is installed, use the following command −
python --version
Next, check if you have Pip preinstalled or not, by typing the following command in the shell,
pip -V
Now, install Tkinter by using the following command −
pip install tkinter
- Related Articles
- How do we use easy_install to install Python modules?
- How to use pip to install python modules in easy way?
- Forcing Tkinter window to stay on top of fullscreen in Windows 10?
- When and how to use pack or grid layouts in tkinter?
- How to enable or disable local user on Windows OS using PowerShell?
- How to bring Tkinter window in front of other windows?
- How to Install Python on Windows?
- How to create a resizable Windows without title bar in Tkinter?
- How do I create child windows with Python tkinter?
- How to Install C++ Compiler on Windows?
- How to configuring Java Environment on Windows?
- How to Balance Privacy on Windows 11?
- How to install Python MySQLdb module using pip?
- How to set your python path on Windows?
- How to use Thread in Tkinter Python?

Advertisements