xppaut command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xppaut: command not found
or when using sudo you get the following error message
sudo: xppaut: command not found
Solutions to xppaut: command not found
How To Fix xppaut: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xppaut is provided by xppaut package.
xppaut is:
XPPAUT is a tool for solving * differential equations, * difference equations, * delay equations, * functional equations, * boundary value problems, and * stochastic equations.
The code brings together a number of useful algorithms and is extremely portable. All the graphics and interface are written completely in Xlib which explains the somewhat idiosyncratic and primitive widgets interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xppaut
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xppaut.
sudo apt -y install xppaut
Or if you have aptitude installed you can use the following command.
sudo aptitude install xppaut
Summary
In this tutorial we learn how to fix xppaut command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.