How To Install nauty-doc on Kali Linux
Introduction
In this tutorial we learn how to install nauty-doc on Kali Linux.
What is nauty-doc
nauty-doc is:
nauty (No AUTomorphisms, Yes?) is a set of procedures for computing automorphism groups of graphs and digraphs. This mathematical software suite is developed by Brendan McKay and Adolfo Piperno: http://pallini.di.uniroma1.it
This package provides the user guide for the nauty mathematical software suite; it also contains examples and extra technical documentations.
There are three methods to install nauty-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 nauty-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install nauty-doc using apt-get by running the following command:
sudo apt-get -y install nauty-docInstall nauty-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install nauty-doc using apt by running the following command:
sudo apt -y install nauty-docInstall nauty-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 nauty-doc using aptitude by running the following command:
sudo aptitude -y install nauty-docHow To Uninstall nauty-doc on Kali Linux
To uninstall only the nauty-doc package we can use the following command:
sudo apt-get remove nauty-docUninstall nauty-doc And Its Dependencies
To uninstall nauty-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove nauty-docRemove nauty-doc Configurations and Data
To remove nauty-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge nauty-docRemove nauty-doc configuration, data, and all of its dependencies
We can use the following command to remove nauty-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nauty-docDependencies
nauty-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install nauty-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.