How to Install Tkinter on Linux? Last Updated : 05 Oct, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report Tkinter is the most popular Python library used to create GUI-based applications. The name Tkinter comes from the Tk interface. In this article, we will look into the process of installing Tkinter in a Linux system. Note: Tkinter module comes in bundled with Python, so this article can be helpful for those who might face an error running Tkinter on their system. Follow the below step to install Tkinter on a Linux system: Step 1. Open up the Linux terminal and run the following command depending upon your version of Linux: For Debian-based Linux: sudo apt-get install python-tk For Arch-based Linux: sudo pacman -S tk For Fedora-based Linux: sudo dnf install python3-tkinter For RHEL, CentOS, Oracle Linux: sudo yum install -y tkinter tk-develInstalling Tkinter in debian based linux Step 2: After writing the above command hit the enter button and type your user password. After this, it will ask you to confirm the installation type "Y" in the terminal and hit enter. installing tkinter Step 3: To verify the Tkinter installation run the following command in the terminal. And you will see a pop-up window opened with two buttons showing the current version of Tkinter installed. python -m TkinterTkinter installed Note: The highlighted text shows the current version of the Tkinter i.e. 8.6 Comment More infoAdvertise with us Next Article How to Install Tkinter on Linux? R rriicchhaa Follow Improve Article Tags : Python Linux-Unix Blogathon Blogathon-2021 Python-tkinter how-to-install +2 More Practice Tags : python Similar Reads How to Install Rasterio on Linux? Rasterio is a python library for reading and writing on geospatial raster datasets. It is a GDAL and NumPy-based Python library for raster data. We can use any of the following methods to install Rasterio on our Linux machine. Method 1: Using pip command Prerequisites: We must have pip ( a python pa 2 min read How to Install Python on Linux This guide explains how to install Python on Linux machines. Python has become an essential programming language for developers, data scientists, and system administrators. It's used for various applications, including web development, data science, automation, and machine learning.This comprehensiv 15+ min read How to Install Tkinter on MacOS? In this article, we will learn how to install Tkinter in Python on MacOS. Tkinter is a Python binding to the Tk GUI toolkit. It is the standard Python interface to the Tk GUI toolkit, and is Python's de-facto standard GUI. Installation:Method 1: Using pip to install Tkinter Follow the below steps to 2 min read How to Install Scikit-Learn on Linux? In this article, we are going to see how to install Scikit-Learn on Linux. Scikit-Learn is a python open source library for predictive data analysis. It is built on NumPy, SciPy, and matplotlib. It is written in Python, Cython, C, and C++ language. It is available for Linux, Unix, Windows, and Mac. 2 min read How to Install wxPython on Linux? wxPython is a Python module. It is an open-source module that allows its users to create a highly functional, cross-platform graphical user interface (GUI). It is a set of extension modules that wrap the GUI components of the wxPython library. In this article, we will look into the process of instal 1 min read Like