pod-minimumversion command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pod-minimumversion: command not found
or when using sudo you get the following error message
sudo: pod-minimumversion: command not found
Solutions to pod-minimumversion: command not found
How To Fix pod-minimumversion: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pod-minimumversion is provided by libpod-minimumversion-perl package.
libpod-minimumversion-perl is:
Pod::MinimumVersion parses the POD in a Perl script, module, or document, and reports what version of Perl is required to process the directives in it with pod2man etc.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libpod-minimumversion-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libpod-minimumversion-perl.
sudo apt -y install libpod-minimumversion-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libpod-minimumversion-perl
Summary
In this tutorial we learn how to fix pod-minimumversion command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.