lpe command not found

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

Introduction

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

lpe: command not found

or when using sudo you get the following error message

sudo: lpe: command not found

Solutions to lpe: command not found

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

In Ubuntu lpe is provided by lpe package.

lpe is:

lpe stands for “lightweight programmer’s editor”, and is exactly that. It is designed to provide at the same time all the features that might be required in a decent code editor and a light, intuitive feel that makes it a pleasure to work with, making all necessary commands accessible as easily as possible.

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

sudo apt-get -y install lpe

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

You can also use apt command to install lpe.

sudo apt -y install lpe

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

sudo aptitude install lpe

Summary

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