How To Install python3-designate on Ubuntu 20.04

In this tutorial we learn how to install python3-designate on Ubuntu 20.04. python3-designate is OpenStack DNS as a Service - Python 3 libs OpenStack DNS as a Service - Python 3 libs

Introduction

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

What is python3-designate

python3-designate is:

Designate provides DNSaaS services for OpenStack. It provides a multi-tenant REST API for domain & record management. It is Integrated with Keystone for authentication, and provides a framework in place to integrate with Nova and Neutron notifications (for auto-generated records). Designate supports PowerDNS and Bind9 out of the box.

This package provides the Python 3 libraries.

Package: python3-designate Architecture: all Version: 1:10.0.0~b3~git2020041012.9ed2623a-0ubuntu1 Priority: extra Section: python Source: designate Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2660 Depends: designate-common (= 1:10.0.0~b3~git2020041012.9ed2623a-0ubuntu1), python3-babel (>= 2.3.4), python3-debtcollector (>= 1.2.0), python3-designateclient (>= 2.7.0), python3-dnspython (>= 1.14.0), python3-eventlet (>= 0.18.2), python3-flask (>= 0.10), python3-futurist (>= 1.2.0), python3-greenlet (>= 0.4.10), python3-jinja2 (>= 2.10), python3-jsonschema (>= 2.6.0), python3-keystoneauth1 (>= 3.4.0), python3-keystonemiddleware (>= 4.17.0), python3-memcache (>= 1.56), python3-migrate (>= 0.11.0), python3-netaddr (>= 0.7.18), python3-neutronclient (>= 1:6.7.0), python3-os-win (>= 3.0.0), python3-oslo.concurrency (>= 3.26.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.reports (>= 1.18.0), python3-oslo.rootwrap (>= 5.8.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.service (>= 1.24.0), python3-oslo.upgradecheck (>= 0.1.0), 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-requests (>= 2.14.2), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.0.10), python3-stevedore (>= 1:1.20.0), python3-suds (>= 0.6), python3-tenacity (>= 4.4.0), python3-tooz (>= 1.58.0), python3-webob (>= 1:1.7.1), python3-werkzeug (>= 0.9), python3.8:any, python3:any Suggests: python3-edgegrid (>= 1.1.1), python3-monasca-statsd (>= 1.1.0) Filename: pool/main/d/designate/python3-designate_10.0.0~b3~git2020041012.9ed2623a-0ubuntu1_all.deb Size: 271396 MD5sum: 04aee05758dfa2a3a886cfd686ee2341 SHA1: be18d2aca989936ce86265db80b1c5d2038f9046 SHA256: 411aa18a9cf5b40fd1abe3b626e050e650c242611684dcc9f3a381b895d7e0a9 Homepage: https://github.com/openstack/designate Description-en: OpenStack DNS as a Service - Python 3 libs Designate provides DNSaaS services for OpenStack. It provides a multi-tenant REST API for domain & record management. It is Integrated with Keystone for authentication, and provides a framework in place to integrate with Nova and Neutron notifications (for auto-generated records). Designate supports PowerDNS and Bind9 out of the box.

This package provides the Python 3 libraries.

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

sudo apt-get -y install python3-designate

Install python3-designate Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-designate

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

sudo aptitude -y install python3-designate

How To Uninstall python3-designate on Ubuntu 20.04

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

sudo apt-get remove python3-designate

Uninstall python3-designate And Its Dependencies

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

sudo apt-get -y autoremove python3-designate

Remove python3-designate Configurations and Data

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

sudo apt-get -y purge python3-designate

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

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

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

References

Summary

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