xmpsolve command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xmpsolve: command not found
or when using sudo you get the following error message
sudo: xmpsolve: command not found
Solutions to xmpsolve: command not found
How To Fix xmpsolve: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xmpsolve is provided by xmpsolve package.
xmpsolve 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 graphical version of MPSolve.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xmpsolve
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xmpsolve.
sudo apt -y install xmpsolve
Or if you have aptitude installed you can use the following command.
sudo aptitude install xmpsolve
Summary
In this tutorial we learn how to fix xmpsolve command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.