mgp2ps command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mgp2ps: command not found
or when using sudo you get the following error message
sudo: mgp2ps: command not found
Solutions to mgp2ps: command not found
How To Fix mgp2ps: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mgp2ps is provided by mgp package.
mgp is:
MagicPoint is an X11-based presentation tool. It is designed to make simple presentations easy while to make complicated presentations possible. Its presentation file (whose suffix is typically .mgp) is just text so that you can create presentation files quickly with your favorite editor (e.g. Emacs or jupp).
To fix this problem, we can install more using the command below.
sudo apt-get -y install mgp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mgp.
sudo apt -y install mgp
Or if you have aptitude installed you can use the following command.
sudo aptitude install mgp
Summary
In this tutorial we learn how to fix mgp2ps command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.