On Thu, Nov 17, 2005 at 06:52:51PM -0800, Pine Yan wrote:
> 
> This basically is the LWP tutorial on CPAN...
> What's wrong with my system?

What does

   /home/gnu/bin/perl -MLWP -e 'print $LWP::VERSION'

say? If it does not print out the version number, then this
Perl (there could be many Perl installations on your system)
does not know about LWP.

\rho

PS: Quoting is an art.

> > I have the following code:
> > 
> > #!/home/gnu/bin/perl
> > 
> > use LWP;
> > 
> > my $browser = LWP::UserAgent->new;
> > 
> > my $url = 'http://www.google.com';
> > 
> > my $response = $browser->get($url);
[...]

> > Can't locate object method "get" via package "LWP::UserAgent" (perhaps
> > you forgot to load "LWP::UserAgent"?) at www.pl line 9.
> > 
> > What's wrong here? My LWP version is 5.69, perl 5.6.1

Reply via email to