How To Install libtrilinos-globipack-dev on Kali Linux

In this tutorial we learn how to install libtrilinos-globipack-dev on Kali Linux. libtrilinos-globipack-dev is 1D globalization capabilities - development files

Introduction

In this tutorial we learn how to install libtrilinos-globipack-dev on Kali Linux.

What is libtrilinos-globipack-dev

libtrilinos-globipack-dev is:

The GlobiPack package contains a set of interfaces and implementations for 1D globalization capabilities to be used in nonlinear solvers, optimization solvers, and similar algorithms that require globalization methods (e.g. line search and trust region methods). Basic interfaces and a few implementations are present for 1D line search methods appropritate for Newton, quasi-Newton, and nonlinear CG algorithms.

This package provides headers.

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

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

sudo apt-get update

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

sudo apt-get -y install libtrilinos-globipack-dev

Install libtrilinos-globipack-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libtrilinos-globipack-dev

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

sudo aptitude -y install libtrilinos-globipack-dev

How To Uninstall libtrilinos-globipack-dev on Kali Linux

To uninstall only the libtrilinos-globipack-dev package we can use the following command:

sudo apt-get remove libtrilinos-globipack-dev

Uninstall libtrilinos-globipack-dev And Its Dependencies

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

sudo apt-get -y autoremove libtrilinos-globipack-dev

Remove libtrilinos-globipack-dev Configurations and Data

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

sudo apt-get -y purge libtrilinos-globipack-dev

Remove libtrilinos-globipack-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libtrilinos-globipack-dev

Dependencies

libtrilinos-globipack-dev have the following dependencies:

References

Summary

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