How To Install python3-gevent-dbg on Ubuntu 20.04

In this tutorial we learn how to install python3-gevent-dbg on Ubuntu 20.04. python3-gevent-dbg is gevent is a coroutine-based Python networking library - debugging symbols

Introduction

In this tutorial we learn how to install python3-gevent-dbg on Ubuntu 20.04.

What is python3-gevent-dbg

python3-gevent-dbg is:

gevent uses greenlet to provide a high-level synchronous API on top of libevent event loop.

This is the debugging symbols for gevent. Build-Ids: 24a377c5008635b7ee08907e41793783d771cbc5 357432bbd4927da9079780dd9d710469cf5fcd48 3d983c5b9e31952d1f63a177d7faba9e98c739bf 5eff8ac9fb17d7a1d997d8f78255c0f5c7e45358 65438e36f31bfb38e901619fbc3aeb6c508074cf 74361d46db0223f9d0ab847f0fccae563968e5e4 83dfe251f5b9c654c79024db8fa590cbced553af 8918515ebd253c303c9b432dbf454fd04fdc12c8 a29bd6a716322b358e0c8bf79fa101f0a9405d90 c0b0d31e485dd54cc8cc3df423dd1edc44013cfd c3c898d7a88832dd5188d3afb7f6dba3ed697990 cabc391ca4239e45f720815cf310d864c1b51a37 cd0a62dee0cedac5f8ace45c643b722f180a3c23 dc567f54cb4de34401a964997dd180182778e3c3 e08720e5a6a0c78935fb516fa805d47d4455819f Python-Version: 3.8

There are three methods to install python3-gevent-dbg on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-gevent-dbg Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-gevent-dbg using apt-get by running the following command:

sudo apt-get -y install python3-gevent-dbg

Install python3-gevent-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-gevent-dbg using apt by running the following command:

sudo apt -y install python3-gevent-dbg

Install python3-gevent-dbg Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-gevent-dbg using aptitude by running the following command:

sudo aptitude -y install python3-gevent-dbg

How To Uninstall python3-gevent-dbg on Ubuntu 20.04

To uninstall only the python3-gevent-dbg package we can use the following command:

sudo apt-get remove python3-gevent-dbg

Uninstall python3-gevent-dbg And Its Dependencies

To uninstall python3-gevent-dbg and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove python3-gevent-dbg

Remove python3-gevent-dbg Configurations and Data

To remove python3-gevent-dbg configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python3-gevent-dbg

Remove python3-gevent-dbg configuration, data, and all of its dependencies

We can use the following command to remove python3-gevent-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-gevent-dbg

References

Summary

In this tutorial we learn how to install python3-gevent-dbg package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.