in reply to Re: Finding modules
in thread Finding modules

I found this:
/usr/local/lib/perl5/5.8.0/Filter/Simple.pm /usr/local/lib/perl5/5.8.0/Test/Simple.pm
Now how do I get the LWP::Simple to work from here?
#!/usr/local/bin/perl use lib '/usr/local/lib/perl5/5.8.0/Test/'; use LWP::Simple;
Is the above correct? Does Simple.pm store LWP::Simple??

Replies are listed 'Best First'.
Re: Re: Re: Finding modules
by borisz (Canon) on Jan 27, 2004 at 19:06 UTC
    No, it means you have the modules Filter::Simple and Test::Simple installed. No LWP::Simple at all. try installing it first with perl -MCPAN -e'install LWP::Simple'for example.
    Boris