Gossamer Forum
Home : General : Perl Programming :

install perl package ( pm ) files

Quote Reply
install perl package ( pm ) files
Can anyone help:

I need to know how to install perl package ( pm ) files
on my computer and on my server

1) Finance::Quote
2) HTTP::Request

Thanks
Quote Reply
Re: [bdmc] install perl package ( pm ) files In reply to
Hi

a CPAN shell might get you started:

perl -MCPAN -e 'install Finance::Quote'
perl -MCPAN -e 'install HTTP::Request'

Of course, I'd also read the documentations.

Cheers,
Oliver