mdp command not found

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

Introduction

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

mdp: command not found

or when using sudo you get the following error message

sudo: mdp: command not found

Solutions to mdp: command not found

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

In Ubuntu mdp is provided by mdp package.

mdp is:

mdp is a command-line program that allows you to make elegant presentations from Markdown formatted files.

It is as easy as write your presentation content in the text editor of your preference and launch the presentation from the command-line.

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

sudo apt-get -y install mdp

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

You can also use apt command to install mdp.

sudo apt -y install mdp

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

sudo aptitude install mdp

Summary

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