How To Install mandelbrot-solver on Debian 12

Learn how to install mandelbrot-solver on Debian 12 with this tutorial. mandelbrot-solver is Solver for Mandelbrot polynomials based on MPSolve

Introduction

In this tutorial we learn how to install mandelbrot-solver on Debian 12.

What is mandelbrot-solver

mandelbrot-solver is:

A polynomial rootfinder that can determine arbitrary precision approximations with guaranteed inclusion radii. It supports exploiting of polynomial structures such as sparsisty and allows for polynomial implicitly defined or in some non standard basis. This binary, provided as an example of custom polynomial implementation in the MPSolve package, uses the particular structure of this family of polynomials to develop an efficient solver that exhibit experimental O(n^2) complexity.

This package contains the specialization of mpsolve to Mandelbrot polynomials.

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

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

sudo apt-get update

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

sudo apt-get -y install mandelbrot-solver

Install mandelbrot-solver Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install mandelbrot-solver

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

sudo aptitude -y install mandelbrot-solver

How To Uninstall mandelbrot-solver on Debian 12

To uninstall only the mandelbrot-solver package we can use the following command:

sudo apt-get remove mandelbrot-solver

Uninstall mandelbrot-solver And Its Dependencies

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

sudo apt-get -y autoremove mandelbrot-solver

Remove mandelbrot-solver Configurations and Data

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

sudo apt-get -y purge mandelbrot-solver

Remove mandelbrot-solver configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge mandelbrot-solver

Dependencies

mandelbrot-solver have the following dependencies:

References

Summary

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