nemiver command not found

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

Introduction

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

nemiver: command not found

or when using sudo you get the following error message

sudo: nemiver: command not found

Solutions to nemiver: command not found

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

In Ubuntu nemiver is provided by nemiver package.

nemiver is:

Nemiver is a project to write a standalone graphical debugger that integrates in the GNOME desktop. It features a backend which uses the well known GNU Debugger gdb to debug C/C++ programs.

Nemiver is built with a plugin system that can offer several different perspectives. Currently the only perspective provided is a debugging perspective, but it could be expanded with perspectives added for valgrind, or for profiling tools such as oprofile.

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

sudo apt-get -y install nemiver

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

You can also use apt command to install nemiver.

sudo apt -y install nemiver

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

sudo aptitude install nemiver

Summary

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