How To Install coinor-libsymphony3 on Kali Linux

In this tutorial we learn how to install coinor-libsymphony3 on Kali Linux. coinor-libsymphony3 is COIN-OR solver for mixed-integer linear programs (shared libraries)

Introduction

In this tutorial we learn how to install coinor-libsymphony3 on Kali Linux.

What is coinor-libsymphony3

coinor-libsymphony3 is:

SYMPHONY is an open-source generic mixed-integer linear programs (MILP) solver, callable library, and extensible framework for implementing customized solvers SYMPHONY has a number of advanced capabilities, including the ability to solve multi-objective MILPs, the ability to warm start its solution procedure, and the ability to perform basic sensitivity analyses.

SYMPHONY is part of the larger COIN-OR initiative (Computational Infrastructure for Operations Research).

This package contains the shared libraries.

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

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

sudo apt-get update

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

sudo apt-get -y install coinor-libsymphony3

Install coinor-libsymphony3 Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install coinor-libsymphony3

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

sudo aptitude -y install coinor-libsymphony3

How To Uninstall coinor-libsymphony3 on Kali Linux

To uninstall only the coinor-libsymphony3 package we can use the following command:

sudo apt-get remove coinor-libsymphony3

Uninstall coinor-libsymphony3 And Its Dependencies

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

sudo apt-get -y autoremove coinor-libsymphony3

Remove coinor-libsymphony3 Configurations and Data

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

sudo apt-get -y purge coinor-libsymphony3

Remove coinor-libsymphony3 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge coinor-libsymphony3

Dependencies

coinor-libsymphony3 have the following dependencies:

References

Summary

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