How To Install python3-placement on Ubuntu 20.04

In this tutorial we learn how to install python3-placement on Ubuntu 20.04. python3-placement is OpenStack Placement - Python 3 libraries OpenStack Placement - Python 3 libraries

Introduction

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

What is python3-placement

python3-placement is:

OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

OpenStack Placement provides an HTTP service for managing, selecting, and claiming providers of classes of inventory representing available resources in a cloud.

This package contains the Python 3 placement libraries.

Package: python3-placement Architecture: all Version: 3.0.0~b3~git2020041014.0f90d197-0ubuntu1 Priority: optional Section: python Source: placement Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Openstack Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1520 Depends: placement-common (= 3.0.0~b3~git2020041014.0f90d197-0ubuntu1), python3-jsonschema (>= 2.6.0), python3-keystonemiddleware (>= 4.18.0), python3-microversion-parse (>= 0.2.1), python3-os-resource-classes (>= 0.5.0), python3-os-traits (>= 2.2.0), python3-oslo.concurrency (>= 3.26.0), python3-oslo.config (>= 1:6.7.0), python3-oslo.context (>= 1:2.19.2), python3-oslo.db (>= 4.40.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 3.36.0), python3-oslo.middleware (>= 3.31.0), python3-oslo.policy (>= 1.35.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.upgradecheck (>= 0.2.0), python3-oslo.utils (>= 3.37.0), python3-oslo.versionedobjects (>= 1.31.2), python3-pbr (>= 2.0.0), python3-pkg-resources (>= 21.0.0), python3-requests (>= 2.14.2), python3-routes (>= 2.3.1), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.2.19), python3-webob (>= 1:1.8.2), python3:any Filename: pool/main/p/placement/python3-placement_3.0.0~b3~git2020041014.0f90d197-0ubuntu1_all.deb Size: 199284 MD5sum: 96796564a610c93ef544eb5ab165eb87 SHA1: 8d36d095827f69fc1dfa5aa35180dd740b2bb480 SHA256: 2ccb53c1bd67b95c489411072e5a59d18ca02a865c98b83b7ad5e10d4eb34f5a Homepage: https://github.com/openstack/placement Description-en: OpenStack Placement - Python 3 libraries OpenStack is a reliable cloud infrastructure. Its mission is to produce the ubiquitous cloud computing platform that will meet the needs of public and private cloud providers regardless of size, by being simple to implement and massively scalable.

OpenStack Placement provides an HTTP service for managing, selecting, and claiming providers of classes of inventory representing available resources in a cloud.

This package contains the Python 3 placement libraries.

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

sudo apt-get -y install python3-placement

Install python3-placement Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-placement

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

sudo aptitude -y install python3-placement

How To Uninstall python3-placement on Ubuntu 20.04

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

sudo apt-get remove python3-placement

Uninstall python3-placement And Its Dependencies

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

sudo apt-get -y autoremove python3-placement

Remove python3-placement Configurations and Data

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

sudo apt-get -y purge python3-placement

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

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

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

References

Summary

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