Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

Modules in Perl????


ghost's Avatar
0 0

I'm running active perl on XP , and I have no idea how to compile? or install modules from cpan can someone point me in the right direction?:xx:


n3w7yp3's Avatar
Member
0 0
  1. Download the moduel
  2. Use gunzip to decompress it
  3. tar -xf [file] to extract it.
  4. cd into the newley extracted module's directory.
  5. Check for the presence of a file called README or INSTALL( (view them if they exist).

For most modules, the instlal process is something like:

$ perl Makefile.PL && make && make test $ su

make install

exit