3

I'm just wondering if anyone can tell me how you install the following perl modules on debiab :

install LWP
install DBI
install DBD::mysql
install GD

I tried with CPAN although when I ran

perl -MCPAN -e shell
install LWP

It was telling me I missing destination file operand.

Any idea?

Belgin Fish
  • 919
  • 5
  • 17
  • 31

1 Answers1

7

Normally this is done without CPAN but with the Debian repositories. So

apt-get install libwww-perl libdbi-perl libdbd-mysql-perl libgd-gd2-perl

Then you are done and even get security patches.

mailq
  • 17,023
  • 2
  • 37
  • 69