anomaly command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
anomaly: command not found
or when using sudo you get the following error message
sudo: anomaly: command not found
Solutions to anomaly: command not found
How To Fix anomaly: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu anomaly is provided by anomaly package.
anomaly is:
To detect anomalous data in a numeric stream, anomaly needs to see a stream of numeric data, and apply one of its detection methods. If an anomaly is detected, a response is made, chosen from one or more built in methods.
To fix this problem, we can install more using the command below.
sudo apt-get -y install anomaly
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install anomaly.
sudo apt -y install anomaly
Or if you have aptitude installed you can use the following command.
sudo aptitude install anomaly
Summary
In this tutorial we learn how to fix anomaly command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.