axiom command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
axiom: command not found
or when using sudo you get the following error message
sudo: axiom: command not found
Solutions to axiom: command not found
How To Fix axiom: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu axiom is provided by axiom package.
axiom is:
Axiom is useful for research and development of mathematical algorithms. It defines a strongly typed, mathematically correct type hierarchy. It has a programming language and a built-in compiler.
Axiom has been in development since 1973 and was sold as a commercial product. It has been released as free software.
Efforts are underway to extend this software to (a) develop a better user interface (b) make it useful as a teaching tool (c) develop an algebra server protocol (d) integrate additional mathematics (e) rebuild the algebra in a literate programming style (f) integrate logic programming (g) develop an Axiom Journal with refereed submissions.
This package contains the main program binary and all precompiled algebra and autoloadable modules.
To fix this problem, we can install more using the command below.
sudo apt-get -y install axiom
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install axiom.
sudo apt -y install axiom
Or if you have aptitude installed you can use the following command.
sudo aptitude install axiom
Summary
In this tutorial we learn how to fix axiom command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.