pod2projdocs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pod2projdocs: command not found
or when using sudo you get the following error message
sudo: pod2projdocs: command not found
Solutions to pod2projdocs: command not found
How To Fix pod2projdocs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pod2projdocs is provided by libpod-projectdocs-perl package.
libpod-projectdocs-perl is:
The Pod::ProjectDocs module allows you to generate CPAN like POD pages from your modules for your projects. It also creates an optional index page.
Additionally, you can use the command line script pod2projdocs to generate your documentation without creating a custom perl script.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libpod-projectdocs-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libpod-projectdocs-perl.
sudo apt -y install libpod-projectdocs-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libpod-projectdocs-perl
Summary
In this tutorial we learn how to fix pod2projdocs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.