How To Install python3-murano-agent on Ubuntu 20.04

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

Introduction

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

What is python3-murano-agent

python3-murano-agent 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.

Package: python3-murano-agent Architecture: all Version: 1:5.0.0~b3~git2020041013.b908aa8-0ubuntu1 Priority: extra Section: universe/python Source: murano-agent Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 164 Depends: python3-anyjson (>= 0.3.3), python3-cryptography (>= 2.1.4), python3-eventlet (>= 0.20.0), python3-git (>= 3.0.5), python3-kombu (>= 4.1.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.log (>= 3.37.0), python3-oslo.service (>= 1.30.0), python3-oslo.utils (>= 3.36.0), python3-pbr (>= 3.1.1), python3-requests (>= 2.18.4), python3-semantic-version (>= 2.6.0), python3-six (>= 1.11.0), python3-yaml (>= 3.12), python3.8:any, python3:any Recommends: python3-ldap Filename: pool/universe/m/murano-agent/python3-murano-agent_5.0.0~b3~git2020041013.b908aa8-0ubuntu1_all.deb Size: 23704 MD5sum: 0a65f6bfe8b41b55dd37325056fb20cf SHA1: 9034929f399595d87ddad627304f4bd5eb6df42c SHA256: 5680bb889f16438a03e7f0824629b64d6f98c239033decaf5346c688fd6705b2 Homepage: https://github.com/openstack/murano-agent Description-en: cloud-ready application catalog - Python 3 library 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.

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

sudo apt-get -y install python3-murano-agent

Install python3-murano-agent Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-murano-agent

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

sudo aptitude -y install python3-murano-agent

How To Uninstall python3-murano-agent on Ubuntu 20.04

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

sudo apt-get remove python3-murano-agent

Uninstall python3-murano-agent And Its Dependencies

To uninstall python3-murano-agent 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-agent

Remove python3-murano-agent Configurations and Data

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

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

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

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

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

References

Summary

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