How To Install python-glance-doc on Ubuntu 20.04

In this tutorial we learn how to install python-glance-doc on Ubuntu 20.04. python-glance-doc is OpenStack Image Registry and Delivery Service - Documentation OpenStack Image Registry and Delivery Service - Documentation

Introduction

In this tutorial we learn how to install python-glance-doc on Ubuntu 20.04.

What is python-glance-doc

python-glance-doc is:

The Glance project provides an image registration and discovery service (Parallax) and an image delivery service (Teller). These services are used in conjunction by Nova to deliver images from object stores, such as OpenStack’s Swift service, to Nova’s compute nodes.

This package contains the documentation.

Package: python-glance-doc Architecture: all Version: 2:20.0.0~b3~git2020041012.d5a0ce18-0ubuntu1 Priority: extra Section: doc Source: glance Origin: Ubuntu Maintainer: Ubuntu OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 20267 Depends: libjs-jquery Filename: pool/main/g/glance/python-glance-doc_20.0.0~b3~git2020041012.d5a0ce18-0ubuntu1_all.deb Size: 4371044 MD5sum: 8e83186495db7d4b1a2b13baf6ec0ba3 SHA1: b548d2314f5cd9d498abfa20e91a613de0ea51cf SHA256: 0a7b0e8720d70974cfa995e88299f29a06ed38efe494c24e4d4321ec7206c5bb Homepage: https://launchpad.net/glance Description-en: OpenStack Image Registry and Delivery Service - Documentation The Glance project provides an image registration and discovery service (Parallax) and an image delivery service (Teller). These services are used in conjunction by Nova to deliver images from object stores, such as OpenStack’s Swift service, to Nova’s compute nodes.

This package contains the documentation.

There are three methods to install python-glance-doc 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 python-glance-doc Using apt-get

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

sudo apt-get update

After updating apt database, We can install python-glance-doc using apt-get by running the following command:

sudo apt-get -y install python-glance-doc

Install python-glance-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python-glance-doc using apt by running the following command:

sudo apt -y install python-glance-doc

Install python-glance-doc 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 python-glance-doc using aptitude by running the following command:

sudo aptitude -y install python-glance-doc

How To Uninstall python-glance-doc on Ubuntu 20.04

To uninstall only the python-glance-doc package we can use the following command:

sudo apt-get remove python-glance-doc

Uninstall python-glance-doc And Its Dependencies

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

sudo apt-get -y autoremove python-glance-doc

Remove python-glance-doc Configurations and Data

To remove python-glance-doc configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python-glance-doc

Remove python-glance-doc configuration, data, and all of its dependencies

We can use the following command to remove python-glance-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python-glance-doc

References

Summary

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