How To Install python-app-catalog-ui on Debian 9
Introduction
In this tutorial we learn how to install python-app-catalog-ui
on Debian 9.
What is python-app-catalog-ui
python-app-catalog-ui is:
This package includes the OpenStack Community App Catalog UI for Horizon. This allows users to search contents of the Community App Catalog from within Horizon. The OpenStack Community App Catalog will help you make applications available on your OpenStack cloud by providing a community driven catalog containing Glance images, Heat templates, Murano applications and more.
There are three methods to install python-app-catalog-ui
on Debian 9. 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-app-catalog-ui 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-app-catalog-ui
using apt-get
by running the following command:
sudo apt-get -y install python-app-catalog-ui
Install python-app-catalog-ui Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install python-app-catalog-ui
using apt
by running the following command:
sudo apt -y install python-app-catalog-ui
Install python-app-catalog-ui 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 Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install python-app-catalog-ui
using aptitude
by running the following command:
sudo aptitude -y install python-app-catalog-ui
How To Uninstall python-app-catalog-ui on Debian 9
To uninstall only the python-app-catalog-ui
package we can use the following command:
sudo apt-get remove python-app-catalog-ui
Uninstall python-app-catalog-ui And Its Dependencies
To uninstall python-app-catalog-ui
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove python-app-catalog-ui
Remove python-app-catalog-ui Configurations and Data
To remove python-app-catalog-ui
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge python-app-catalog-ui
Remove python-app-catalog-ui configuration, data, and all of its dependencies
We can use the following command to remove python-app-catalog-ui
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-app-catalog-ui
Dependencies
python-app-catalog-ui have the following dependencies:
References
Summary
In this tutorial we learn how to install python-app-catalog-ui
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.