podlint command not found

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

Introduction

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

podlint: command not found

or when using sudo you get the following error message

sudo: podlint: command not found

Solutions to podlint: command not found

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

In Ubuntu podlint is provided by libpod-pom-perl package.

libpod-pom-perl is:

Pod::POM is a Perl Pod document parser that exposes an object model called Pod Object Model. The object model is generated as a hierarchical tree of nodes, each of which represents a different element of the original document. The tree can be walked manually and the nodes examined, printed or otherwise manipulated. Pod::POM also provides view objects, which can automatically traverse the tree, or section thereof, and generate an output representation in one form or another.

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

sudo apt-get -y install libpod-pom-perl

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

You can also use apt command to install libpod-pom-perl.

sudo apt -y install libpod-pom-perl

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

sudo aptitude install libpod-pom-perl

Summary

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