Member-only story

This new Python package builds awesome GUI’s!

Manpreet Singh
3 min readOct 13, 2021

Welcome back! Python is an awesome programming language with a ton of capability, one of these features is GUI development, and there is a new GUI package in town! The name of this GUI package is Dear PyGui, luckily for us, this package is already hosted on GitHub, if you want to jump straight to this package, check out the link below:

In my experience, I always like seeing some of the examples of the outputs of these packages, below is a link to their examples page:

In my opinion, some of the examples from this new package look awesome!

On top of this, this package differs from other front-end packages because Dear PyGui uses your GPU for extremely dynamic interfaces!

If you want to install this package, you can use the following pip commands:

pip install dearpygui
or
pip3 install dearpygui

From there, you can begin building out your GUI’s, check out the example below to get an idea on how to build out a GUI:

import dearpygui.dearpygui as dpgdef save_callback():
print("Save Clicked")
dpg.create_context()
dpg.create_viewport()
dpg.setup_dearpygui()
with dpg.window(label="Example Window")…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Manpreet Singh
Manpreet Singh

Responses (4)

Write a response

Hi, the only example that works is the simple one included in the article. The examples from github showcase are outdated and dont work in my environment. I opened 3 issues and then stopped.
Best,
Mickey

--

This is really a great post and I have been looking for such GUI development. Thanks again for sharing this and will try on my current project (ideally will try to migrate from tkinter 😊)

--

Hello your article is very interesting. I'm YouTuber and your content inspires me. Congratulations 👏🎉

--