epix command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
epix: command not found
or when using sudo you get the following error message
sudo: epix: command not found
Solutions to epix: command not found
How To Fix epix: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu epix is provided by epix package.
epix is:
ePiX provides a system for creating mathematically accurate line figures, plots, and movies using an easy-to-learn C++-like syntax. LaTeX and dvips comprise the typographical rendering engine, while ImageMagick is used to create bitmapped images and animations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install epix
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install epix.
sudo apt -y install epix
Or if you have aptitude installed you can use the following command.
sudo aptitude install epix
Summary
In this tutorial we learn how to fix epix command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.