mkdist command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mkdist: command not found
or when using sudo you get the following error message
sudo: mkdist: command not found
Solutions to mkdist: command not found
How To Fix mkdist: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mkdist is provided by libmodule-package-rdf-perl package.
libmodule-package-rdf-perl is:
Resource Description Framework (RDF) is a standard model for data interchange on the Web.
Module::Package::RDF allows you to keep a really simple Makefile.PL: Just add semantic packaging information as RDF Turtle files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmodule-package-rdf-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmodule-package-rdf-perl.
sudo apt -y install libmodule-package-rdf-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmodule-package-rdf-perl
Summary
In this tutorial we learn how to fix mkdist command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.