How To Install monodevelop-nunit on Debian 9

In this tutorial we learn how to install monodevelop-nunit on Debian 9. monodevelop-nunit is NUnit plugin for MonoDevelop

Introduction

In this tutorial we learn how to install monodevelop-nunit on Debian 9.

What is monodevelop-nunit

monodevelop-nunit is:

MonoDevelop is a GNOME IDE primarily designed for C# and other CLI (.NET) languages. It is the unbranded version of Xamarin Studio.

This package enables NUnit integration for MonoDevelop.

There are three methods to install monodevelop-nunit on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install monodevelop-nunit Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install monodevelop-nunit using apt-get by running the following command:

sudo apt-get -y install monodevelop-nunit

Install monodevelop-nunit Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install monodevelop-nunit using apt by running the following command:

sudo apt -y install monodevelop-nunit

Install monodevelop-nunit Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install monodevelop-nunit using aptitude by running the following command:

sudo aptitude -y install monodevelop-nunit

How To Uninstall monodevelop-nunit on Debian 9

To uninstall only the monodevelop-nunit package we can use the following command:

sudo apt-get remove monodevelop-nunit

Uninstall monodevelop-nunit And Its Dependencies

To uninstall monodevelop-nunit and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove monodevelop-nunit

Remove monodevelop-nunit Configurations and Data

To remove monodevelop-nunit configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge monodevelop-nunit

Remove monodevelop-nunit configuration, data, and all of its dependencies

We can use the following command to remove monodevelop-nunit configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge monodevelop-nunit

Dependencies

monodevelop-nunit have the following dependencies:

References

Summary

In this tutorial we learn how to install monodevelop-nunit package on Debian 9 using different package management tools: apt, apt-get and aptitude.