poet command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
poet: command not found
or when using sudo you get the following error message
sudo: poet: command not found
Solutions to poet: command not found
How To Fix poet: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu poet is provided by libpoet-perl package.
libpoet-perl is:
Poet is a modern Perl web framework designed especially for Mason developers. It uses PSGI/Plack for server integration, Mason for request routing and templating, and a selection of best-of-breed CPAN modules for caching, logging and configuration.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libpoet-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libpoet-perl.
sudo apt -y install libpoet-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libpoet-perl
Summary
In this tutorial we learn how to fix poet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.