in reply to where the module file *.pm located
If it's not there, the module won't be found. You can add it to the @INC with:use Data::Dumper; print STDERR Dumper( \@INC );
BTW, it should be '/' and not '\' in your script.sub BEGIN { unshift @INC, 'c:/Perl64/site/lib'; unshift @INC, 'c:/.....'; # what ever you needed }
|
|---|