in reply to Finding modules

Just use the modules and then look at their inclusion path in %INC e.g
perl -MLWP::Simple -MMail::Sendmail -le \ 'print "$_: $INC{$_}" for qw( LWP/Simple.pm Mail/Sendmail.pm )'
You might also want to look at your local perllocal via perldoc perllocal.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: Finding modules
by Anonymous Monk on Jan 27, 2004 at 18:52 UTC
    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??
      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