ne command not found

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

Introduction

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

ne: command not found

or when using sudo you get the following error message

sudo: ne: command not found

Solutions to ne: command not found

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

In Ubuntu ne is provided by ne package.

ne is:

Ne, the nice editor, is one of the few text editors being both easy to use for the beginner and powerful enough for the wizard, supporting UTF-8 and multi-column characters as well as syntax highlighting.

It uses short, intuitive and easy to remember key bindings while providing all the features an editor should have. It is fully configurable allowing the user to change the content of the various menus, to easily create small macros and to easily change the existing key bindings while being a small and fast editor.

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

sudo apt-get -y install ne

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

You can also use apt command to install ne.

sudo apt -y install ne

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

sudo aptitude install ne

Summary

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