math2oogl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
math2oogl: command not found
or when using sudo you get the following error message
sudo: math2oogl: command not found
Solutions to math2oogl: command not found
How To Fix math2oogl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu math2oogl is provided by geomview package.
geomview is:
Geomview is interactive geometry software which is particularly appropriate for mathematics research and education. In particular, geomview can display things in hyperbolic and spherical space as well as Euclidean space.
Geomview allows multiple independently controllable objects and cameras. It provides interactive control for motion, appearances (including lighting, shading, and materials), picking on an object, edge or vertex level, snapshots in SGI image file or Renderman RIB format, and adding or deleting objects is provided through direct mouse manipulation, control panels, and keyboard shortcuts. External programs can drive desired aspects of the viewer (such as continually loading changing geometry or controlling the motion of certain objects) while allowing interactive control of everything else.
To fix this problem, we can install more using the command below.
sudo apt-get -y install geomview
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install geomview.
sudo apt -y install geomview
Or if you have aptitude installed you can use the following command.
sudo aptitude install geomview
Summary
In this tutorial we learn how to fix math2oogl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.