mpsolve command not found

In this troubleshooting guide we learn how to fix mpsolve command not found error message

Introduction

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

mpsolve: command not found

or when using sudo you get the following error message

sudo: mpsolve: command not found

Solutions to mpsolve: command not found

How To Fix mpsolve: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu mpsolve is provided by mpsolve package.

mpsolve 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 package contains the command line version of MPSolve.

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

sudo apt-get -y install mpsolve

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

You can also use apt command to install mpsolve.

sudo apt -y install mpsolve

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

sudo aptitude install mpsolve

Summary

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