How To Install python-ovsdbapp-doc on Ubuntu 20.04

In this tutorial we learn how to install python-ovsdbapp-doc on Ubuntu 20.04. python-ovsdbapp-doc is library for creating OVSDB applications - doc library for creating OVSDB applications - doc

Introduction

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

What is python-ovsdbapp-doc

python-ovsdbapp-doc is:

The ovdsbapp library is useful for creating applications that communicate via Open vSwitch’s OVSDB protocol (https://tools.ietf.org/html/rfc7047). It wraps the Python ‘ovs’ and adds an event loop and friendly transactions. It features an thread-based event loop for using ovs.db.Idl, transaction support, native OVSDB communication.

This package contains the documentation.

Package: python-ovsdbapp-doc Architecture: all Version: 1.1.0-0ubuntu1 Priority: optional Section: doc Source: python-ovsdbapp Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2070 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-ovsdbapp/python-ovsdbapp-doc_1.1.0-0ubuntu1_all.deb Size: 879220 MD5sum: d9a94b7072a340f3ad75740d9dda8c06 SHA1: 7bca43320bda3900486c65e73320a5e1224ce7e0 SHA256: c76f41f2de68a50e4ab5bd3ffde99dde80b37855ead12b2d93399b86030d4142 Homepage: https://github.com/openstack/ovsdbapp Description-en: library for creating OVSDB applications - doc The ovdsbapp library is useful for creating applications that communicate via Open vSwitch’s OVSDB protocol (https://tools.ietf.org/html/rfc7047). It wraps the Python ‘ovs’ and adds an event loop and friendly transactions. It features an thread-based event loop for using ovs.db.Idl, transaction support, native OVSDB communication.

This package contains the documentation.

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

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

Install python-ovsdbapp-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-ovsdbapp-doc

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

sudo aptitude -y install python-ovsdbapp-doc

How To Uninstall python-ovsdbapp-doc on Ubuntu 20.04

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

sudo apt-get remove python-ovsdbapp-doc

Uninstall python-ovsdbapp-doc And Its Dependencies

To uninstall python-ovsdbapp-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-ovsdbapp-doc

Remove python-ovsdbapp-doc Configurations and Data

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

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

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

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

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

References

Summary

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