lastz_D command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lastz_D: command not found
or when using sudo you get the following error message
sudo: lastz_D: command not found
Solutions to lastz_D: command not found
How To Fix lastz_D: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lastz_D is provided by lastz package.
lastz is:
LASTZ is a drop-in replacement for BLASTZ, and is backward compatible with BLASTZ’s command-line syntax. That is, it supports all of BLASTZ’s options but also has additional ones, and may produce slightly different alignment results.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lastz
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lastz.
sudo apt -y install lastz
Or if you have aptitude installed you can use the following command.
sudo aptitude install lastz
Summary
In this tutorial we learn how to fix lastz_D command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.