How To Install python3-heat-dashboard on Ubuntu 20.04

In this tutorial we learn how to install python3-heat-dashboard on Ubuntu 20.04. python3-heat-dashboard is OpenStack orchestration service - Python 3 dashboard plugin OpenStack orchestration service - Python 3 dashboard plugin

Introduction

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

What is python3-heat-dashboard

python3-heat-dashboard is:

Heat is a service to orchestrate multiple composite cloud applications using templates, through both an OpenStack-native ReST API and a CloudFormation-compatible Query API.

This package contains the Python 3 OpenStack dashboard plugin.

Package: python3-heat-dashboard Architecture: all Version: 2.1.0~git2020032615.7842190-0ubuntu1 Priority: extra Section: universe/python Source: heat-dashboard Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 5278 Depends: heat-dashboard-common (= 2.1.0~git2020032615.7842190-0ubuntu1), openstack-dashboard (>= 3:18.0.0), python3-django (>= 2:2.2), python3-django-horizon (>= 3:18.0.0), python3-heatclient (>= 1.17.0), python3-pbr (>= 2.0.0), python3:any Breaks: openstack-dashboard (« 3:13.0.0-0ubuntu1~) Replaces: openstack-dashboard (« 3:13.0.0-0ubuntu1~) Filename: pool/universe/h/heat-dashboard/python3-heat-dashboard_2.1.0~git2020032615.7842190-0ubuntu1_all.deb Size: 759220 MD5sum: 0fcec29011b19bc35f5b28d887e94536 SHA1: d6df60af992b5256efb9159ccc41bdaae028e8d6 SHA256: 2aa931f729a0633de9006d3a32f8855008642f12b416895d58a826feed062d3b Homepage: https://github.com/stackforge/heat-dashboard Description-en: OpenStack orchestration service - Python 3 dashboard plugin Heat is a service to orchestrate multiple composite cloud applications using templates, through both an OpenStack-native ReST API and a CloudFormation-compatible Query API.

This package contains the Python 3 OpenStack dashboard plugin.

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

sudo apt-get -y install python3-heat-dashboard

Install python3-heat-dashboard Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-heat-dashboard

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

sudo aptitude -y install python3-heat-dashboard

How To Uninstall python3-heat-dashboard on Ubuntu 20.04

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

sudo apt-get remove python3-heat-dashboard

Uninstall python3-heat-dashboard And Its Dependencies

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

sudo apt-get -y autoremove python3-heat-dashboard

Remove python3-heat-dashboard Configurations and Data

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

sudo apt-get -y purge python3-heat-dashboard

Remove python3-heat-dashboard configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-heat-dashboard

References

Summary

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