How To Install python3-barbican on Ubuntu 20.04

In this tutorial we learn how to install python3-barbican on Ubuntu 20.04. python3-barbican is OpenStack Key Management Service - Python 3 files OpenStack Key Management Service - Python 3 files

Introduction

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

What is python3-barbican

python3-barbican is:

The Barbican project provides services for secure storage, provisioning and management of sensitive client secret information such as encryption keys. It is aims at being useful for all environments, including large ephemeral Clouds.

This package contains the Python 3 files and libraries.

Package: python3-barbican Architecture: all Version: 1:10.0.0~b2~git2020020508.7b14d983-0ubuntu3 Priority: extra Section: python Source: barbican Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2395 Depends: barbican-common (= 1:10.0.0~b2~git2020020508.7b14d983-0ubuntu3), python3-alembic (>= 0.8.10), python3-babel (>= 2.3.4), python3-castellan (>= 3.0.1), python3-cffi (>= 1.7.0), python3-crypto (>= 2.6), python3-cryptography (>= 2.1), python3-eventlet (>= 0.18.2), python3-jsonschema (>= 2.6.0), python3-keystonemiddleware (>= 4.17.0), python3-ldap (>= 3.0.0), python3-openssl (>= 17.1.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.context (>= 1:2.19.2), python3-oslo.db (>= 4.27.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 3.36.0), python3-oslo.messaging (>= 5.29.0), python3-oslo.middleware (>= 3.31.0), python3-oslo.policy (>= 1.30.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.service (>= 1.24.0), python3-oslo.upgradecheck (>= 0.1.1), python3-oslo.utils (>= 3.33.0), python3-oslo.versionedobjects (>= 1.31.2), python3-paste (>= 2.0.2), python3-pastedeploy (>= 1.5.0), python3-pbr (>= 2.0.0), python3-pecan (>= 1.0.0), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.0.10), python3-stevedore (>= 1:1.20.0), python3-webob (>= 1:1.7.1), python3-cffi-backend-api-min (<= 9729), python3-cffi-backend-api-max (>= 9729), python3:any Recommends: python3-pymysql Suggests: python3-pykmip (>= 0.8.0) Filename: pool/main/b/barbican/python3-barbican_10.0.0~b2~git2020020508.7b14d983-0ubuntu3_all.deb Size: 269712 MD5sum: 56ea23bc5ce2e0f7e28f0e55d33a2490 SHA1: e2201cecbea9da14e4c06ad30239df95112ce461 SHA256: bd8e449c7cf30c868b2503bf22b4755e7614dcf60f87ce7cf38a77f7bcb13ff6 Homepage: https://github.com/openstack/barbican Description-en: OpenStack Key Management Service - Python 3 files The Barbican project provides services for secure storage, provisioning and management of sensitive client secret information such as encryption keys. It is aims at being useful for all environments, including large ephemeral Clouds.

This package contains the Python 3 files and libraries.

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

sudo apt-get -y install python3-barbican

Install python3-barbican Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-barbican

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

sudo aptitude -y install python3-barbican

How To Uninstall python3-barbican on Ubuntu 20.04

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

sudo apt-get remove python3-barbican

Uninstall python3-barbican And Its Dependencies

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

sudo apt-get -y autoremove python3-barbican

Remove python3-barbican Configurations and Data

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

sudo apt-get -y purge python3-barbican

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

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

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

References

Summary

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