How To Install libmstch-dev on Kali Linux

In this tutorial we learn how to install libmstch-dev on Kali Linux. libmstch-dev is Mustache implementation in C++11

Introduction

In this tutorial we learn how to install libmstch-dev on Kali Linux.

What is libmstch-dev

libmstch-dev is:

Mstch is a complete implementation of {{mustache}} templates using modern C++. It’s compliant with specifications v1.1.3, including the lambda module.

Mustache is a logic-less template language. As such, it is very well suited for programs that are written in a compiled language, such as C and C++, as they cannot easily evaluate code found in a template. Mustache does however supports a simple conditional and a loop statement.

This package contains the header files and a static library.

There are three methods to install libmstch-dev on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libmstch-dev Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libmstch-dev

Install libmstch-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libmstch-dev

Install libmstch-dev Using aptitude

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

sudo aptitude update

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

sudo aptitude -y install libmstch-dev

How To Uninstall libmstch-dev on Kali Linux

To uninstall only the libmstch-dev package we can use the following command:

sudo apt-get remove libmstch-dev

Uninstall libmstch-dev And Its Dependencies

To uninstall libmstch-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libmstch-dev

Remove libmstch-dev Configurations and Data

To remove libmstch-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libmstch-dev

Remove libmstch-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libmstch-dev

Dependencies

libmstch-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libmstch-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.