Glen Scott wrote:
> 
> Hi there,
> 
> I am getting the following error output from my Perl script:
> 
> Can't locate loadable object for module HTML::Parser in @INC
> 
> even though HTML/Parser.pm is indeed present.  Any ideas about what's going
> on here?
> 
> Glen/Design Solution

The error message should also say what-all dirs are in your @INC

Verify yourself that you can find Parser.pm in one of those dirs; if 
not, then put it there.  If you have no rights to put it there, on the 
server you're using, then use a statement like the following to tell 
your Perl code where to find these external libraries:

use lib qw(     /usr/home/style/usr/local/lib/perl5
                /usr/home/style/usr/local/lib/site_perl);  

Make sure the dir(s) in the above statement contain your external modules.

Hope that helps,

Steve

Reply via email to