perlanet command not found

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

Introduction

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

perlanet: command not found

or when using sudo you get the following error message

sudo: perlanet: command not found

Solutions to perlanet: command not found

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

In Ubuntu perlanet is provided by libperlanet-perl package.

libperlanet-perl is:

Perlanet is a Perl module for aggregating web feeds.

It allows you to aggregate a number of web feeds (both Atom and RSS) and to publish a web page and another web feed containing the aggregated content.

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

sudo apt-get -y install libperlanet-perl

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

You can also use apt command to install libperlanet-perl.

sudo apt -y install libperlanet-perl

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

sudo aptitude install libperlanet-perl

Summary

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