How To Install python-novaclient-doc on Kali Linux
Introduction
In this tutorial we learn how to install python-novaclient-doc on Kali Linux.
What is python-novaclient-doc
python-novaclient-doc is:
OpenStack Compute, codenamed Nova, is a cloud computing fabric controller designed to be modular and easy to extend and adapt. In addition to its “native” OpenStack API, it also supports the Amazon EC2 API, and it supports many different database backends (including SQLite, MySQL, and PostgreSQL), hypervisors (KVM, Xen), and user directory systems (LDAP, SQL).
Python novaclient library and nova CLI tool for interacting with OpenStack Compute (Nova) through the OpenStack Compute API.
This package provides the documentation.
There are three methods to install python-novaclient-doc on Kali Linux. 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-novaclient-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install python-novaclient-doc using apt-get by running the following command:
sudo apt-get -y install python-novaclient-docInstall python-novaclient-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install python-novaclient-doc using apt by running the following command:
sudo apt -y install python-novaclient-docInstall python-novaclient-doc Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install python-novaclient-doc using aptitude by running the following command:
sudo aptitude -y install python-novaclient-docHow To Uninstall python-novaclient-doc on Kali Linux
To uninstall only the python-novaclient-doc package we can use the following command:
sudo apt-get remove python-novaclient-docUninstall python-novaclient-doc And Its Dependencies
To uninstall python-novaclient-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove python-novaclient-docRemove python-novaclient-doc Configurations and Data
To remove python-novaclient-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge python-novaclient-docRemove python-novaclient-doc configuration, data, and all of its dependencies
We can use the following command to remove python-novaclient-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-novaclient-docDependencies
python-novaclient-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install python-novaclient-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.