cfm-seriation command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cfm-seriation: command not found
or when using sudo you get the following error message
sudo: cfm-seriation: command not found
Solutions to cfm-seriation: command not found
How To Fix cfm-seriation: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cfm-seriation is provided by seriation package.
seriation is:
This software is an efficient implementation of the seriation problem which ‘finds a suitable linear order for a set of objects’. It has been used to order a network of proteins such that ‘related’ nodes are closer in the other.
To fix this problem, we can install more using the command below.
sudo apt-get -y install seriation
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install seriation.
sudo apt -y install seriation
Or if you have aptitude installed you can use the following command.
sudo aptitude install seriation
Summary
In this tutorial we learn how to fix cfm-seriation command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.