How To Install libmadness-dev on Debian 12

Learn how to install libmadness-dev on Debian 12 with this tutorial. libmadness-dev is Numerical Environment for Scientific Simulation (development files)

Introduction

In this tutorial we learn how to install libmadness-dev on Debian 12.

What is libmadness-dev

libmadness-dev is:

MADNESS (Multiresolution Adaptive Numerical Environment for Scientific Simulation) provides a high-level environment for the solution of integral and differential equations in many dimensions using adaptive, fast methods with guaranteed precision based on multi-resolution analysis and novel separated representations. There are three main components to MADNESS. At the lowest level is a new petascale parallel programming environment that increases programmer productivity and code performance/scalability while maintaining backward compatibility with current programming tools such as MPI and Global Arrays. The numerical capabilities built upon the parallel tools provide a high-level environment for composing and solving numerical problems in many (1-6+) dimensions. Finally, built upon the numerical tools are new applications with initial focus upon chemistry, atomic and molecular physics, material science, and nuclear structure.

This package contains the static libraries and the header files.

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

Install libmadness-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 libmadness-dev using apt-get by running the following command:

sudo apt-get -y install libmadness-dev

Install libmadness-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libmadness-dev

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

sudo aptitude -y install libmadness-dev

How To Uninstall libmadness-dev on Debian 12

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

sudo apt-get remove libmadness-dev

Uninstall libmadness-dev And Its Dependencies

To uninstall libmadness-dev and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove libmadness-dev

Remove libmadness-dev Configurations and Data

To remove libmadness-dev configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libmadness-dev

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

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

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

Dependencies

libmadness-dev have the following dependencies:

References

Summary

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