le command not found

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

Introduction

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

le: command not found

or when using sudo you get the following error message

sudo: le: command not found

Solutions to le: command not found

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

In Ubuntu le is provided by le package.

le is:

LE has many block operations with stream and rectangular blocks, can edit both Unix and DOS style files (LF/CRLF), is binary clean, has hexadecimal mode, can edit large files and mmap’able devices, has tunable syntax highlighting, tunable key map, and tunable color scheme (but can use default colors).

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

sudo apt-get -y install le

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

You can also use apt command to install le.

sudo apt -y install le

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

sudo aptitude install le

Summary

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