How To Install python3-sahara-dashboard on Ubuntu 20.04

In this tutorial we learn how to install python3-sahara-dashboard on Ubuntu 20.04. python3-sahara-dashboard is OpenStack data processing cluster as a service - Python 3 dashboard plugin OpenStack data processing cluster as a service - Python 3 dashboard plugin

Introduction

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

What is python3-sahara-dashboard

python3-sahara-dashboard is:

The Sahara project provides a simple means to provision a data-intensive application cluster (Hadoop or Spark) on top of OpenStack. It’s the ex Savanna project, renamed due to potential trademark issues.

This package contains the OpenStack Python 3 dashboard plugin.

Package: python3-sahara-dashboard Architecture: all Version: 12.0.0~b3~git2020041315.b4f7dcd-0ubuntu1 Priority: extra Section: universe/python Source: sahara-dashboard Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1523 Depends: openstack-dashboard (>= 3:18.0.0), python3-babel (>= 2.3.4), python3-designateclient (>= 2.7.0), python3-django (>= 2:2.2), python3-django-compressor (>= 2.0), python3-django-horizon (>= 3:18.0.0), python3-iso8601 (>= 0.1.11), python3-keystoneauth1 (>= 3.4.0), python3-keystoneclient (>= 1:3.22.0), python3-manilaclient (>= 1.16.0), python3-neutronclient (>= 1:6.7.0), python3-novaclient (>= 2:9.1.0), python3-oslo.log (>= 3.36.0), python3-oslo.serialization (>= 2.18.0), python3-pbr (>= 2.0.0), python3-saharaclient (>= 2.2.0), python3-tz (>= 2013.6), python3:any Filename: pool/universe/s/sahara-dashboard/python3-sahara-dashboard_12.0.0~b3~git2020041315.b4f7dcd-0ubuntu1_all.deb Size: 179024 MD5sum: 641b1786673a04760eb2f6bf942f448a SHA1: 77dc07f942063b6cfb5ebb3cc375d25eccdf9dd3 SHA256: df9fd13e542a58ca2934d2a188f0a2479f9a7451b643e12c425f3c0ed01ee269 Homepage: https://github.com/stackforge/sahara-dashboard Description-en: OpenStack data processing cluster as a service - Python 3 dashboard plugin The Sahara project provides a simple means to provision a data-intensive application cluster (Hadoop or Spark) on top of OpenStack. It’s the ex Savanna project, renamed due to potential trademark issues.

This package contains the OpenStack Python 3 dashboard plugin.

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

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

Install python3-sahara-dashboard Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-sahara-dashboard

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

sudo aptitude -y install python3-sahara-dashboard

How To Uninstall python3-sahara-dashboard on Ubuntu 20.04

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

sudo apt-get remove python3-sahara-dashboard

Uninstall python3-sahara-dashboard And Its Dependencies

To uninstall python3-sahara-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-sahara-dashboard

Remove python3-sahara-dashboard Configurations and Data

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

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

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

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

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

References

Summary

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