How To Install python3-aodh on Ubuntu 20.04

In this tutorial we learn how to install python3-aodh on Ubuntu 20.04. python3-aodh is OpenStack Telemetry (Ceilometer) Alarming - Python 3 libraries OpenStack Telemetry (Ceilometer) Alarming - Python 3 libraries

Introduction

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

What is python3-aodh

python3-aodh is:

Ceilometer aims to deliver a Single Point Of Contact for billing systems, providing all the counters they need to establish customer billing, across all current and future OpenStack components. The delivery of counters must be traceable and auditable, the counters must be easily extensible to support new projects, and agents doing data collections should be independent of the overall system.

(A ceilometer is an instrument that measures cloud coverage.)

This package contains the Python 3 libraries that are needed for all parts of Aodh.

Package: python3-aodh Architecture: all Version: 10.0.0~b3~git2020041012.6ae7f90a-0ubuntu1 Priority: optional Section: python Source: aodh Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 909 Depends: aodh-common (= 10.0.0~b3~git2020041012.6ae7f90a-0ubuntu1), python3-cachetools (>= 1.1.6), python3-cotyledon, python3-croniter (>= 0.3.4), python3-dateutil, python3-debtcollector (>= 1.2.0), python3-futurist (>= 0.11.0), python3-gnocchiclient (>= 3.1.0), python3-heatclient (>= 1.17.0), python3-jsonschema (>= 2.6.0), python3-keystoneauth1 (>= 2.1), python3-keystoneclient (>= 1:1.6.0), python3-keystonemiddleware (>= 2.2.0), python3-lxml (>= 2.3), python3-octaviaclient (>= 1.8.0), python3-openstackclient, python3-oslo.config (>= 1:2.6.0), python3-oslo.db (>= 4.8.0), python3-oslo.i18n (>= 1.5.0), python3-oslo.log (>= 1.2.0), python3-oslo.messaging (>= 5.2.0), python3-oslo.middleware (>= 3.22.0), python3-oslo.policy (>= 0.5.0), python3-oslo.upgradecheck (>= 0.1.1), python3-oslo.utils (>= 3.5.0), python3-pastedeploy (>= 1.5.0), python3-pbr (>= 2.0.0), python3-pecan (>= 0.8.0), python3-pymysql, python3-requests (>= 2.5.2), python3-retrying, python3-six (>= 1.9.0), python3-sqlalchemy, python3-stevedore (>= 1:1.5.0), python3-tenacity (>= 3.2.1), python3-tooz (>= 1.28.0), python3-tz (>= 2013.6), python3-voluptuous (>= 0.8.10), python3-webob (>= 1:1.2.3), python3-werkzeug, python3-wsme (>= 0.8), python3-ceilometerclient, python3:any Filename: pool/main/a/aodh/python3-aodh_10.0.0~b3~git2020041012.6ae7f90a-0ubuntu1_all.deb Size: 111128 MD5sum: ae9c3b4be91b9310b06f204bc179fdff SHA1: 349549895596180a5959be97e2e750b62e0518b8 SHA256: c2b415d375f639e1c2b0d29fd033a40985fe1ad6970b0913534675bd1cc98b8c Homepage: https://github.com/openstack/aodh Description-en: OpenStack Telemetry (Ceilometer) Alarming - Python 3 libraries Ceilometer aims to deliver a Single Point Of Contact for billing systems, providing all the counters they need to establish customer billing, across all current and future OpenStack components. The delivery of counters must be traceable and auditable, the counters must be easily extensible to support new projects, and agents doing data collections should be independent of the overall system.

(A ceilometer is an instrument that measures cloud coverage.)

This package contains the Python 3 libraries that are needed for all parts of Aodh.

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

sudo apt-get -y install python3-aodh

Install python3-aodh Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-aodh

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

sudo aptitude -y install python3-aodh

How To Uninstall python3-aodh on Ubuntu 20.04

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

sudo apt-get remove python3-aodh

Uninstall python3-aodh And Its Dependencies

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

sudo apt-get -y autoremove python3-aodh

Remove python3-aodh Configurations and Data

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

sudo apt-get -y purge python3-aodh

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

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

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

References

Summary

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