psort command not found

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

Introduction

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

psort: command not found

or when using sudo you get the following error message

sudo: psort: command not found

Solutions to psort: command not found

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

In Ubuntu psort is provided by psortb package.

psortb is:

PSORTb enables prediction of bacterial protein subcellular localization (SCL) and provides a quick and inexpensive means for gaining insight into protein function, verifying experimental results, annotating newly sequenced bacterial genomes, detecting potential cell surface/secreted drug targets, as well as identifying biomarkers for microbes.

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

sudo apt-get -y install psortb

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

You can also use apt command to install psortb.

sudo apt -y install psortb

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

sudo aptitude install psortb

Summary

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