in reply to Installling of Modules
That gives you a list of the directories where Perl will look for modules. If those are where your modules are, fine. If the modules are somewhere else, then you need to tell Perl, by puttingfor (@INC) { print $_,"\n"; }
at the top of scripts that use those modules.use lib '/path/to/your/modules';
|
|---|