seedtop command not found

In this troubleshooting guide we learn how to fix seedtop command not found error message

Introduction

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

seedtop: command not found

or when using sudo you get the following error message

sudo: seedtop: command not found

Solutions to seedtop: command not found

How To Fix seedtop: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu seedtop is provided by ncbi-blast+-legacy package.

ncbi-blast+-legacy is:

This package adds some fake scripts to call NCBI+ programs with the NCBI blast command line. It makes use of the legacy_blast script in ncbi-blast+ package.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ncbi-blast+-legacy

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ncbi-blast+-legacy.

sudo apt -y install ncbi-blast+-legacy

Or if you have aptitude installed you can use the following command.

sudo aptitude install ncbi-blast+-legacy

Summary

In this tutorial we learn how to fix seedtop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.