neobio command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
neobio: command not found
or when using sudo you get the following error message
sudo: neobio: command not found
Solutions to neobio: command not found
How To Fix neobio: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu neobio is provided by neobio package.
neobio is:
Library and graphical user interface for pairwise sequence alignments. Implementation of the dynamic programming methods of Needleman & Wunsch (global alignment) and Smith & Waterman (local alignment).
To fix this problem, we can install more using the command below.
sudo apt-get -y install neobio
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install neobio.
sudo apt -y install neobio
Or if you have aptitude installed you can use the following command.
sudo aptitude install neobio
Summary
In this tutorial we learn how to fix neobio command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.