podspell command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
podspell: command not found
or when using sudo you get the following error message
sudo: podspell: command not found
Solutions to podspell: command not found
How To Fix podspell: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu podspell is provided by libpod-spell-perl package.
libpod-spell-perl is:
Pod::Spell is a POD formatter whose output is good for checking the spelling of the document. Pod::Spell is much like Pod::Text, except that it doesn’t put much effort into actual formatting, and it suppresses things that look like Perl symbols or Perl jargon (so that your spellchecking program won’t complain about mystery words like “
$thing'" or "
Foo::Bar’” or “hashref”).
To fix this problem, we can install more using the command below.
sudo apt-get -y install libpod-spell-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libpod-spell-perl.
sudo apt -y install libpod-spell-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libpod-spell-perl
Summary
In this tutorial we learn how to fix podspell command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.