In this Tkinter tutorial we will learn about GUI programming in python. Tkinter package is inbuilt by default with the latest version of python else you need to install it. This tutorial is designed to help learners to develop desktop or window-based application in python. We assume that you have basic knowledge of python programming (how to code and run the program) or you can learn it from this Python Tutorial. Now we will start learning Tkinter by creating a window and adding some widgets like label, textbox, buttons etc.
Install Tkinter in ubuntu
To install Tkinter module in Ubuntu, you need to run these commands from the terminal window
sudo apt-get update
sudo apt-get install python3.5-tk
Start Learning->>