gmanedit command not found

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

Introduction

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

gmanedit: command not found

or when using sudo you get the following error message

sudo: gmanedit: command not found

Solutions to gmanedit: command not found

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

In Ubuntu gmanedit is provided by gmanedit package.

gmanedit is:

Gtk+ Manpages Editor is an editor for man pages that runs on X with GTK+.

Gmanedit is an application which allows you to edit manual pages (man) on Linux/Unix systems.

It is like most common HTML editors but more easy. You need to know manpages format.

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

sudo apt-get -y install gmanedit

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

You can also use apt command to install gmanedit.

sudo apt -y install gmanedit

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

sudo aptitude install gmanedit

Summary

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