heri-stat command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
heri-stat: command not found
or when using sudo you get the following error message
sudo: heri-stat: command not found
Solutions to heri-stat: command not found
How To Fix heri-stat: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu heri-stat is provided by herisvm package.
herisvm is:
herisvm project is a collection of simple tools implementing evaluation algorithms for classification (machine learning). In particular, heri-eval implements N-fold cross-validation where training and testing is run in parallel.
To fix this problem, we can install more using the command below.
sudo apt-get -y install herisvm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install herisvm.
sudo apt -y install herisvm
Or if you have aptitude installed you can use the following command.
sudo aptitude install herisvm
Summary
In this tutorial we learn how to fix heri-stat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.