lambda command not found

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

Introduction

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

lambda: command not found

or when using sudo you get the following error message

sudo: lambda: command not found

Solutions to lambda: command not found

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

In Ubuntu lambda is provided by lambda-align package.

lambda-align is:

Lambda is a local biosequence aligner optimized for many query sequences and searches in protein space. It is compatible to the de facto standard tool BLAST, but often outperforms the best currently available alternatives at reproducing BLAST’s results and is the fastest compared with the current state of the art at comparable levels of sensitivity.

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

sudo apt-get -y install lambda-align

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

You can also use apt command to install lambda-align.

sudo apt -y install lambda-align

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

sudo aptitude install lambda-align

Summary

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