ggrapher command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ggrapher: command not found
or when using sudo you get the following error message
sudo: ggrapher: command not found
Solutions to ggrapher: command not found
How To Fix ggrapher: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ggrapher is provided by geneagrapher package.
geneagrapher is:
The Mathematics Genealogy Grapher (Geneagrapher) is a software tool to gather the information for building math genealogy trees with data from the Mathematics Genealogy Project. The information extracted is stored in dot file format, which can then be passed to Graphviz to generate a graph.
To fix this problem, we can install more using the command below.
sudo apt-get -y install geneagrapher
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install geneagrapher.
sudo apt -y install geneagrapher
Or if you have aptitude installed you can use the following command.
sudo aptitude install geneagrapher
Summary
In this tutorial we learn how to fix ggrapher command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.