Ok, all I want to do is use the HTML::Parse module. I downloaded it off CPAN.org and installed it the way it said:
Code:
perl Makefile.PL
make
make test
make install
but when I try to run my program I get the following message:
Code:
Can't locate HTML/Parse.pm in @INC (@INC contains: /usr/lib/perl5/5.8.0/i486-linux /usr/lib/perl5/5.8.0 /usr/lib/perl5/site_perl/5.8.0/i486-linux /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl .) at ./spider.pl line 3.
BEGIN failed--compilation aborted at ./spider.pl line 3.
I then read somewhere that if I recompile the entire Perl source that will fix it. So I downloaded the entire Perl source and compiled it (which took ages) and that still didn't work.
Whats the easiest way to fix this?
Thanks for any help