What do I do?
I am running perl 5.6.1 on a Win2k machine. I use Activestate's PPM to install my perl modules. What do I do when I want to install a module not in Activestate's database
I have tried CPAN.pm, it appears to download the file just fine, but when my script ((see below)) executes it fails on the test and makefile. What can I do?
use CPAN;
for $mod (qw(Mail::Address)){
my $obj = CPAN::Shell->expand('Module',$mod);
$obj->install;
}