Member-only story

Fastest way to make GUI’s with Python

Manpreet Singh
6 min readAug 17, 2021

--

Welcome back! One of the most popular things many people use Python for is GUI development, if you don’t know what a GUI is, it’s essentially short for Graphical User Interface, it’s basically the front end of a piece of software:

So let’s talk about one of the fastest ways you can make a GUI with Python, although this is a very basic introduction, it’s still an extremely valuable skill you could have to quickly prototype GUI’s for beginning phases of projects. The specific package we’ll be using is Streamlit, one of my favorite packages for GUI development, if you want to learn more about this package, check out the link below:

Starting off, we want to install this package, to install it we can us pip:

pip install streamlit

Once we install it, let’s build out this GUI! I’ve already built out a basic GUI in one of my other articles, so here is that portion of the tutorial.

--

--

Manpreet Singh
Manpreet Singh

Responses (2)