mle command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mle: command not found
or when using sudo you get the following error message
sudo: mle: command not found
Solutions to mle: command not found
How To Fix mle: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mle is provided by mle package.
mle is:
mle is a small, flexible, terminal-based text editor written in C. Notable features include: full Unicode support, syntax highlighting, scriptable rc file, macros, search and replace (PCRE), window splitting, multiple cursors, and integration with various shell commands.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mle
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mle.
sudo apt -y install mle
Or if you have aptitude installed you can use the following command.
sudo aptitude install mle
Summary
In this tutorial we learn how to fix mle command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.