mplrs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mplrs: command not found
or when using sudo you get the following error message
sudo: mplrs: command not found
Solutions to mplrs: command not found
How To Fix mplrs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mplrs is provided by mplrs package.
mplrs is:
A convex polyhedron is the set of points satisfying a finite family of linear inequalities. The study of the vertices and extreme rays of such systems is important and useful in e.g. mathematics and optimization. In a dual interpretation, finding the vertices of a (bounded) polyhedron is equivalent to finding the convex hull (bounding inequalities) of an (arbitrary dimensional) set of points. Lrs (lexicographic reverse search) has two important features that can be very important for certain applications: it works in exact arithmetic, and it consumes memory proportional to the input, no matter how large the output is.
This package contains the parallel binary mplrs for use with mpi
To fix this problem, we can install more using the command below.
sudo apt-get -y install mplrs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mplrs.
sudo apt -y install mplrs
Or if you have aptitude installed you can use the following command.
sudo aptitude install mplrs
Summary
In this tutorial we learn how to fix mplrs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.