Perl module Help Please ?

AndyII

Verified User
Joined
Oct 3, 2006
Messages
571
I am using a perl script and got this error when trying to de compress
can anyone help me to install it correctly?
I have root access and run a server with DA
Errors are:
Perl module Compress::Zlib is not installed
and
Perl modul Archive::Zip is not installed !
any help would be greatly appreciated
 
You cuold install PERL modules using CPAN

Code:
# perl -MCPAN -e shell
cpan> install Compress::Zlib
cpan> install Archive::Zip
 
Back
Top