How To Install libamplsolver-dev on Kali Linux

In this tutorial we learn how to install libamplsolver-dev on Kali Linux. libamplsolver-dev is library of routines that help solvers work with AMPL (devel)

Introduction

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

What is libamplsolver-dev

libamplsolver-dev is:

Library of routines that help solvers work with AMPL. AMPL is a language and system for formulating, solving, and helping understand mathematical programming problems (of minimizing or maximizing a function subject to constraints).

This package contains the header files and static library.

There are three methods to install libamplsolver-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 libamplsolver-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 libamplsolver-dev using apt-get by running the following command:

sudo apt-get -y install libamplsolver-dev

Install libamplsolver-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libamplsolver-dev

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

sudo aptitude -y install libamplsolver-dev

How To Uninstall libamplsolver-dev on Kali Linux

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

sudo apt-get remove libamplsolver-dev

Uninstall libamplsolver-dev And Its Dependencies

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

sudo apt-get -y autoremove libamplsolver-dev

Remove libamplsolver-dev Configurations and Data

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

sudo apt-get -y purge libamplsolver-dev

Remove libamplsolver-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libamplsolver-dev

Dependencies

libamplsolver-dev have the following dependencies:

References

Summary

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