andi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
andi: command not found
or when using sudo you get the following error message
sudo: andi: command not found
Solutions to andi: command not found
How To Fix andi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu andi is provided by andi package.
andi is:
This is the andi program for estimating the evolutionary distance between closely related genomes. These distances can be used to rapidly infer phylogenies for big sets of genomes. Because andi does not compute full alignments, it is so efficient that it scales even up to thousands of bacterial genomes.
To fix this problem, we can install more using the command below.
sudo apt-get -y install andi
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install andi.
sudo apt -y install andi
Or if you have aptitude installed you can use the following command.
sudo aptitude install andi
Summary
In this tutorial we learn how to fix andi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.