How To Install python-murano-pkg-check on Ubuntu 18.04
Introduction
In this tutorial we learn how to install python-murano-pkg-check on Ubuntu 18.04.
What is python-murano-pkg-check
python-murano-pkg-check is:
Murano tool to validate murano packages.
This package installs the library for Python 2.
There are three methods to install python-murano-pkg-check on Ubuntu 18.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 python-murano-pkg-check Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install python-murano-pkg-check using apt-get by running the following command:
sudo apt-get -y install python-murano-pkg-check
Install python-murano-pkg-check Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python-murano-pkg-check using apt by running the following command:
sudo apt -y install python-murano-pkg-check
Install python-murano-pkg-check 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 python-murano-pkg-check using aptitude by running the following command:
sudo aptitude -y install python-murano-pkg-check
How To Uninstall python-murano-pkg-check on Ubuntu 18.04
To uninstall only the python-murano-pkg-check package we can use the following command:
sudo apt-get remove python-murano-pkg-check
Uninstall python-murano-pkg-check And Its Dependencies
To uninstall python-murano-pkg-check and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove python-murano-pkg-check
Remove python-murano-pkg-check Configurations and Data
To remove python-murano-pkg-check configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge python-murano-pkg-check
Remove python-murano-pkg-check configuration, data, and all of its dependencies
We can use the following command to remove python-murano-pkg-check configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-murano-pkg-check
References
Summary
In this tutorial we learn how to install python-murano-pkg-check package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.