How To Install python3-panko on Ubuntu 20.04

In this tutorial we learn how to install python3-panko on Ubuntu 20.04. python3-panko is Event storage dispatcher for Ceilometer (Python 3) Event storage dispatcher for Ceilometer (Python 3)

Introduction

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

What is python3-panko

python3-panko is:

Event storage dispatcher for Ceilometer.

This package installs the library for Python 3

Package: python3-panko Architecture: all Version: 7.0.0-0ubuntu1 Priority: optional Section: universe/python Source: panko Origin: Ubuntu Maintainer: Chuck Short [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 429 Depends: panko-common (= 7.0.0-0ubuntu1), python3-alembic (>= 0.7.6), python3-dateutil (>= 2.4.2), python3-debtcollector (>= 1.2.0), python3-keystonemiddleware (>= 4.0.0), python3-lxml (>= 2.3), python3-oslo.config (>= 1:3.9.0), python3-oslo.db (>= 4.1.0), python3-oslo.i18n (>= 2.1.0), python3-oslo.log (>= 1.14.0), python3-oslo.middleware (>= 3.10.0), python3-oslo.policy (>= 0.5.0), python3-oslo.reports (>= 0.6.0), python3-oslo.utils (>= 3.5.0), python3-paste, python3-pastedeploy (>= 1.5.0), python3-pbr (>= 2.0.0), python3-pecan (>= 1.0.0), python3-six (>= 1.9.0), python3-sqlalchemy (>= 1.0.10), python3-stevedore (>= 1:1.9.0), python3-tenacity (>= 3.1.0), python3-webob (>= 1:1.2.3), python3-wsme (>= 0.8), python3-yaml (>= 3.1.0), python3-elasticsearch (>= 1.3.0), python3-oslo.serialization, python3-pymongo (>= 3.0.2), python3:any Suggests: python-panko-doc Filename: pool/universe/p/panko/python3-panko_7.0.0-0ubuntu1_all.deb Size: 59560 MD5sum: a9024b885d40c3edf22d7f368134dc82 SHA1: 9eaa60128e6215621cad9a88eaa748a2a087c265 SHA256: 7bdebacec9777f666c80c1293ef3d1a06c9cae85d45022f340a1f0cd6a52a6b3 Homepage: https://launchpad.net/panko Description-en: Event storage dispatcher for Ceilometer (Python 3) Event storage dispatcher for Ceilometer.

This package installs the library for Python 3

There are three methods to install python3-panko 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-panko 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-panko using apt-get by running the following command:

sudo apt-get -y install python3-panko

Install python3-panko Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-panko

Install python3-panko 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-panko using aptitude by running the following command:

sudo aptitude -y install python3-panko

How To Uninstall python3-panko on Ubuntu 20.04

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

sudo apt-get remove python3-panko

Uninstall python3-panko And Its Dependencies

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

sudo apt-get -y autoremove python3-panko

Remove python3-panko Configurations and Data

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

sudo apt-get -y purge python3-panko

Remove python3-panko configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-panko

References

Summary

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