mandelbrot-solver command not found

In this troubleshooting guide we learn how to fix mandelbrot-solver command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

mandelbrot-solver: command not found

or when using sudo you get the following error message

sudo: mandelbrot-solver: command not found

Solutions to mandelbrot-solver: command not found

How To Fix mandelbrot-solver: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu mandelbrot-solver is provided by mandelbrot-solver package.

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.

To fix this problem, we can install more using the command below.

sudo apt-get -y install mandelbrot-solver

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install mandelbrot-solver.

sudo apt -y install mandelbrot-solver

Or if you have aptitude installed you can use the following command.

sudo aptitude install mandelbrot-solver

Summary

In this tutorial we learn how to fix mandelbrot-solver command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.