perlver-fast command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
perlver-fast: command not found
or when using sudo you get the following error message
sudo: perlver-fast: command not found
Solutions to perlver-fast: command not found
How To Fix perlver-fast: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu perlver-fast is provided by libperl-minimumversion-fast-perl package.
libperl-minimumversion-fast-perl is:
Perl::MinimumVersion::Fast module takes Perl source code and calculates the minimum version of perl required to be able to run it. Because it is based on goccy’s Compiler::Lexer, it can do this without having to actually load the code.
Perl::MinimumVersion::Fast is an alternative fast & lightweight implementation of Perl::MinimumVersion.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libperl-minimumversion-fast-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libperl-minimumversion-fast-perl.
sudo apt -y install libperl-minimumversion-fast-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libperl-minimumversion-fast-perl
Summary
In this tutorial we learn how to fix perlver-fast command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.