How To Install libcubature0 on Kali Linux

In this tutorial we learn how to install libcubature0 on Kali Linux. libcubature0 is Multi-dimensional adaptive integration (cubature) in C (shared lib)

Introduction

In this tutorial we learn how to install libcubature0 on Kali Linux.

What is libcubature0

libcubature0 is:

This is a simple C package for adaptive multidimensional integration (cubature) of vector-valued integrands over hypercubes. Of course, it can handle scalar integrands as the special case where f is a one-dimensional vector: the dimensionalities of f and x are independent. The integrand can be evaluated for an array of points at once to enable easy parallelization.

This package contains the shared library.

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

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

sudo apt-get update

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

sudo apt-get -y install libcubature0

Install libcubature0 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libcubature0 using apt by running the following command:

sudo apt -y install libcubature0

Install libcubature0 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 libcubature0 using aptitude by running the following command:

sudo aptitude -y install libcubature0

How To Uninstall libcubature0 on Kali Linux

To uninstall only the libcubature0 package we can use the following command:

sudo apt-get remove libcubature0

Uninstall libcubature0 And Its Dependencies

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

sudo apt-get -y autoremove libcubature0

Remove libcubature0 Configurations and Data

To remove libcubature0 configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libcubature0

Remove libcubature0 configuration, data, and all of its dependencies

We can use the following command to remove libcubature0 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libcubature0

Dependencies

libcubature0 have the following dependencies:

References

Summary

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