How To Install givaro-dev-doc on Kali Linux

In this tutorial we learn how to install givaro-dev-doc on Kali Linux. givaro-dev-doc is Developer Documentation for Givaro (obsolete)

Introduction

In this tutorial we learn how to install givaro-dev-doc on Kali Linux.

What is givaro-dev-doc

givaro-dev-doc is:

Givaro is a C++ library for arithmetic and algebraic computations. Its main features are implementations of the basic arithmetic of many mathematical entities: Primes fields, Extensions Fields, Finite Fields, Finite Rings, Polynomials, Algebraic numbers, and Arbitrary precision integers and rationals (C++ wrappers over gmp).

Givaro also provides data-structures and templated classes for the manipulation of basic algebraic objects, such as vectors, matrices (dense, sparse, structured), univariate polynomials (and therefore recursive multivariate).

It contains different program modules and is fully compatible with the LinBox linear algebra library and the Athapascan environment, which permits parallel programming.

This is a transitional dummy package, Debian no longer ships Developer Documentation for Givaro. This ‘givaro-dev-doc’ package can be safely removed from the system if no other package depends on it.

There are three methods to install givaro-dev-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 givaro-dev-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install givaro-dev-doc using apt-get by running the following command:

sudo apt-get -y install givaro-dev-doc

Install givaro-dev-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install givaro-dev-doc using apt by running the following command:

sudo apt -y install givaro-dev-doc

Install givaro-dev-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 update

After updating apt database, We can install givaro-dev-doc using aptitude by running the following command:

sudo aptitude -y install givaro-dev-doc

How To Uninstall givaro-dev-doc on Kali Linux

To uninstall only the givaro-dev-doc package we can use the following command:

sudo apt-get remove givaro-dev-doc

Uninstall givaro-dev-doc And Its Dependencies

To uninstall givaro-dev-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove givaro-dev-doc

Remove givaro-dev-doc Configurations and Data

To remove givaro-dev-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge givaro-dev-doc

Remove givaro-dev-doc configuration, data, and all of its dependencies

We can use the following command to remove givaro-dev-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge givaro-dev-doc

Dependencies

givaro-dev-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install givaro-dev-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.