How To Install libgecodeflatzinc48 on Debian 10

Learn how to install libgecodeflatzinc48 on Debian 10 with this tutorial. libgecodeflatzinc48 is Gecode support for FlatZinc modelling language

Introduction

In this tutorial we learn how to install libgecodeflatzinc48 on Debian 10.

What is libgecodeflatzinc48

libgecodeflatzinc48 is:

Gecode is a toolkit for developing constraint-based systems and applications. Gecode provides a constraint solver with state-of-the-art performance while being modular and extensible.

FlatZinc is a low-level modelling language for constraint problems. It is designed to be easily interfaceable to constraint solvers (like Gecode). For more information on FlatZinc, please refer to the MiniZinc pages of the G12 project http://www.g12.cs.mu.oz.au/minizinc/.

There are three methods to install libgecodeflatzinc48 on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libgecodeflatzinc48 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libgecodeflatzinc48

Install libgecodeflatzinc48 Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libgecodeflatzinc48

Install libgecodeflatzinc48 Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libgecodeflatzinc48

How To Uninstall libgecodeflatzinc48 on Debian 10

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

sudo apt-get remove libgecodeflatzinc48

Uninstall libgecodeflatzinc48 And Its Dependencies

To uninstall libgecodeflatzinc48 and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove libgecodeflatzinc48

Remove libgecodeflatzinc48 Configurations and Data

To remove libgecodeflatzinc48 configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge libgecodeflatzinc48

Remove libgecodeflatzinc48 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libgecodeflatzinc48

Dependencies

libgecodeflatzinc48 have the following dependencies:

References

Summary

In this tutorial we learn how to install libgecodeflatzinc48 package on Debian 10 using different package management tools: apt, apt-get and aptitude.