elida command not found

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

Introduction

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

elida: command not found

or when using sudo you get the following error message

sudo: elida: command not found

Solutions to elida: command not found

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

In Ubuntu elida is provided by elida package.

elida is:

elida accepts the URL of a .dsc file from the subject of a email message and downloads the rest of the files of the corresponding Debian source package. If there is a previous version in Debian, a diff between the old and new source packages is reported. It then runs pbuilder, piuparts, and lintian. The reports are compressed and emailed back to the user.

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

sudo apt-get -y install elida

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

You can also use apt command to install elida.

sudo apt -y install elida

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

sudo aptitude install elida

Summary

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