in reply to Can't locate LWP/Simple.pm in @INC

Add
/opt/local/lib/perl5/site_perl/5.8.9
instead of
/opt/local/lib/perl5/site_perl/5.8.9/LWP
to PERL5LIB. Then @INC will include /opt/local/lib/perl5/site_perl/5.8.9, and perl should be able to locate the LWP/Simple.pm module file when you use LWP::Simple;

Replies are listed 'Best First'.
Re^2: Can't locate LWP/Simple.pm in @INC
by BruceDB (Novice) on Nov 08, 2009 at 23:21 UTC
    This worked! Thx!