tablix2_plot command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tablix2_plot: command not found
or when using sudo you get the following error message
sudo: tablix2_plot: command not found
Solutions to tablix2_plot: command not found
How To Fix tablix2_plot: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tablix2_plot is provided by tablix2 package.
tablix2 is:
Tablix is a powerful free software kernel for solving general timetabling problems. It uses a coarse-grained parallel genetic algorithm in combination with other techniques to construct sensible timetables from XML formatted problem descriptions. Tablix can run on a single host as well as on a heterogeneous parallel virtual machine using PVM3.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tablix2
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tablix2.
sudo apt -y install tablix2
Or if you have aptitude installed you can use the following command.
sudo aptitude install tablix2
Summary
In this tutorial we learn how to fix tablix2_plot command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.