How To Install python-oslo.service-doc on Ubuntu 20.04

In this tutorial we learn how to install python-oslo.service-doc on Ubuntu 20.04. python-oslo.service-doc is library for running OpenStack services - doc library for running OpenStack services - doc

Introduction

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

What is python-oslo.service-doc

python-oslo.service-doc is:

The oslo.service library provides a framework for managing long-running services in OpenStack projects.

Features include:

  • Creation and management of long running service processes and threads.
  • Periodic task management.
  • SSL configuration of services.
  • systemd notification support.

This package contains the documentation.

Package: python-oslo.service-doc Architecture: all Version: 2.1.1-0ubuntu1 Priority: optional Section: doc Source: python-oslo.service Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2474 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-oslo.service/python-oslo.service-doc_2.1.1-0ubuntu1_all.deb Size: 908408 MD5sum: 14bc322599cfd6b016e435a38a9904a5 SHA1: 3111a932da220a61e52e9818d57b29aedc4cadf0 SHA256: 36838218f035ea3768871705745aae2693e2b855edab399df473fe91e64268d6 Homepage: https://github.com/openstack/oslo.service Description-en: library for running OpenStack services - doc The oslo.service library provides a framework for managing long-running services in OpenStack projects.

Features include:

  • Creation and management of long running service processes and threads.
  • Periodic task management.
  • SSL configuration of services.
  • systemd notification support.

This package contains the documentation.

There are three methods to install python-oslo.service-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-oslo.service-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-oslo.service-doc using apt-get by running the following command:

sudo apt-get -y install python-oslo.service-doc

Install python-oslo.service-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-oslo.service-doc

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

sudo aptitude -y install python-oslo.service-doc

How To Uninstall python-oslo.service-doc on Ubuntu 20.04

To uninstall only the python-oslo.service-doc package we can use the following command:

sudo apt-get remove python-oslo.service-doc

Uninstall python-oslo.service-doc And Its Dependencies

To uninstall python-oslo.service-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-oslo.service-doc

Remove python-oslo.service-doc Configurations and Data

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

sudo apt-get -y purge python-oslo.service-doc

Remove python-oslo.service-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python-oslo.service-doc

References

Summary

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