module-starter command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
module-starter: command not found
or when using sudo you get the following error message
sudo: module-starter: command not found
Solutions to module-starter: command not found
How To Fix module-starter: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu module-starter is provided by libmodule-starter-perl package.
libmodule-starter-perl is:
Module::Starter is used to create a skeletal Perl module distribution, including basic builder scripts, tests, documentation, and module code. The module-starter script should be enough for most users, but the core Module::Starter module can also be overridden for more complex situations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmodule-starter-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmodule-starter-perl.
sudo apt -y install libmodule-starter-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmodule-starter-perl
Summary
In this tutorial we learn how to fix module-starter command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.