flix command not found

In this troubleshooting guide we learn how to fix flix command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

flix: command not found

or when using sudo you get the following error message

sudo: flix: command not found

Solutions to flix: command not found

How To Fix flix: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu flix 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 flix command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.