List all installed Perl modulesperldoc perllocal
or instmodsh
Check if a specified module is installedperldoc -li math::round
# -l = list; -i = ignore case
Install Perl modules
Given an example of Math::Round to be installed
- Search & download the module (Math-Round-0.07.tar.gz) at https://metacpan.org/.
- Install the module
1
2
3
4
5% tar xvf Math-Round-0.07.tar.gz`
% perl Makefile.PL
% make
% make test
% sudo make install