Perl: How do I install Perl modules? eg. Installing LWP module for Perl.
The easiest way to install Perl modules is by installing them through “shell”. Let us say that you are trying to install very common module called: LWP
You can test to see if you have LWP installed by typing:
perl -MLWP -le “print(LWP->VERSION)”
If you get something like: Can’t locate LWP.pm in @INC means [...]

