levee command not found

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

Introduction

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

levee: command not found

or when using sudo you get the following error message

sudo: levee: command not found

Solutions to levee: command not found

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

In Ubuntu levee is provided by levee package.

levee is:

Extremely small screen oriented editor based on the Unix editor “vi”. It provides a terse, powerful way to enter and edit text. This programs dates back to 1980’s; at the dawn of personal computing.

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

sudo apt-get -y install levee

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

You can also use apt command to install levee.

sudo apt -y install levee

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

sudo aptitude install levee

Summary

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