nunit-gui command not found

In this troubleshooting guide we learn how to fix nunit-gui command not found error message

Introduction

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

nunit-gui: command not found

or when using sudo you get the following error message

sudo: nunit-gui: command not found

Solutions to nunit-gui: command not found

How To Fix nunit-gui: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu nunit-gui is provided by nunit-gui package.

nunit-gui is:

NUnit is a unit testing framework for all .NET languages. It serves the same purpose as JUnit does in the Java world. It supports test categories, testing for exceptions and writing test results in plain text or XML.

NUnit targets the CLI (Common Language Infrastructure) and supports Mono and the Microsoft .NET Framework.

This package contains the graphical front-end.

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

sudo apt-get -y install nunit-gui

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

You can also use apt command to install nunit-gui.

sudo apt -y install nunit-gui

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

sudo aptitude install nunit-gui

Summary

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