How To Install python3-murano on Ubuntu 20.04

In this tutorial we learn how to install python3-murano on Ubuntu 20.04. python3-murano is cloud-ready application catalog - Python 3 libs cloud-ready application catalog - Python 3 libs

Introduction

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

What is python3-murano

python3-murano is:

Murano Project introduces an application catalog, which allows application developers and cloud administrators to publish various cloud-ready applications in a browsable categorised catalog, which may be used by the cloud users (including the inexperienced ones) to pick-up the needed applications and services and composes the reliable environments out of them in a “push-the-button” manner.

This package contains the Python 3 library for Murano.

Package: python3-murano Architecture: all Version: 1:9.0.0~b3~git2020041013.564f9cf3-0ubuntu1 Priority: optional Section: universe/python Source: murano Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2195 Depends: alembic (>= 0.8.10), python3-alembic (>= 0.8.10), python3-babel (>= 2.3.4), python3-castellan (>= 0.16.0), python3-congressclient (>= 1.9.0), python3-cryptography (>= 2.1), python3-debtcollector (>= 1.2.0), python3-eventlet (>= 0.18.2), python3-heatclient (>= 1.10.0), python3-jsonpatch (>= 1.16), python3-jsonschema (>= 2.6.0), python3-keystoneauth1 (>= 3.4.0), python3-keystoneclient (>= 1:3.8.0), python3-keystonemiddleware (>= 4.17.0), python3-kombu (>= 4.0.0), python3-mistralclient (>= 1:3.1.0), python3-muranoclient (>= 0.8.2), python3-mysqldb, python3-netaddr (>= 0.7.18), python3-neutronclient (>= 1:6.7.0), python3-openstackclient (>= 3.3.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.serialization (>= 2.18.0), python3-oslo.service (>= 1.24.0), python3-oslo.upgradecheck (>= 0.1.0), python3-oslo.utils (>= 3.33.0), python3-paste (>= 2.0.2), python3-pastedeploy (>= 1.5.0), python3-pbr (>= 2.0.0), python3-psutil (>= 3.2.2), python3-psycopg2 (>= 2.7.0), python3-pymysql (>= 0.6.2), python3-requests (>= 2.8.1), python3-routes (>= 2.3.1), python3-semantic-version (>= 2.8.2), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.0.10), python3-stevedore (>= 1:1.20.0), python3-tenacity (>= 4.4.0), python3-testtools (>= 2.2.0), python3-webob (>= 1:1.7.1), python3-yaml (>= 3.12), python3-yaql (>= 1.1.3), python3:any Recommends: python3-ldap Filename: pool/universe/m/murano/python3-murano_9.0.0~b3~git2020041013.564f9cf3-0ubuntu1_all.deb Size: 260760 MD5sum: 5de9652a96bd040f9bfa7e95ef359c8d SHA1: 9914a935f8d8b929b828bcefce758aaac1c62633 SHA256: 45f1a22d08f77b3db6a9c0aad738ab43e7cccc89a9f4dce9e3511152dc64e865 Homepage: https://github.com/openstack/murano Description-en: cloud-ready application catalog - Python 3 libs Murano Project introduces an application catalog, which allows application developers and cloud administrators to publish various cloud-ready applications in a browsable categorised catalog, which may be used by the cloud users (including the inexperienced ones) to pick-up the needed applications and services and composes the reliable environments out of them in a “push-the-button” manner.

This package contains the Python 3 library for Murano.

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

sudo apt-get -y install python3-murano

Install python3-murano Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-murano

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

sudo aptitude -y install python3-murano

How To Uninstall python3-murano on Ubuntu 20.04

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

sudo apt-get remove python3-murano

Uninstall python3-murano And Its Dependencies

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

sudo apt-get -y autoremove python3-murano

Remove python3-murano Configurations and Data

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

sudo apt-get -y purge python3-murano

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

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

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

References

Summary

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