autox command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
autox: command not found
or when using sudo you get the following error message
sudo: autox: command not found
Solutions to autox: command not found
How To Fix autox: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu autox is provided by auto-07p package.
auto-07p is:
AUTO can do a limited bifurcation analysis of algebraic systems of the form f(u,p) = 0, f,u in Rn and of systems of ordinary differential equations of the form u’(t) = f(u(t),p), f,u in Rn subject to initial conditions, boundary conditions, and integral constraints. Here p denotes one or more parameters. AUTO can also do certain continuation and evolution computations for parabolic PDEs. It also includes the software HOMCONT for the bifurcation analysis of homoclinic orbits. AUTO is quite fast and can benefit from multiple processors; therefore it is applicable to rather large systems of differential equations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install auto-07p
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install auto-07p.
sudo apt -y install auto-07p
Or if you have aptitude installed you can use the following command.
sudo aptitude install auto-07p
Summary
In this tutorial we learn how to fix autox command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.