heri-eval command not found

In this troubleshooting guide we learn how to fix heri-eval command not found error message

Introduction

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

heri-eval: command not found

or when using sudo you get the following error message

sudo: heri-eval: command not found

Solutions to heri-eval: command not found

How To Fix heri-eval: command not found in Ubuntu / Debian / Kali Linux / Raspbian

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