nedit-nc command not found

In this troubleshooting guide we learn how to fix nedit-nc command not found error message

Introduction

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

nedit-nc: command not found

or when using sudo you get the following error message

sudo: nedit-nc: command not found

Solutions to nedit-nc: command not found

How To Fix nedit-nc: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu nedit-nc is provided by nedit package.

nedit is:

NEdit is a multi-purpose text editor for the X Window System, which combines a standard, easy to use, graphical user interface with the thorough functionality and stability required by users who edit text eight hours a day. It provides intensive support for development in a wide variety of languages, text processors, and other tools, but at the same time can be used productively by just about anyone who needs to edit text.

Because of its mature age, NEdit does not support UTF-8 text files, nor will that be implemented.

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

sudo apt-get -y install nedit

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

You can also use apt command to install nedit.

sudo apt -y install nedit

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

sudo aptitude install nedit

Summary

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