in reply to Find if I have module
In this case, the @missing array shows:use ExtUtils::Installed; my $inst = ExtUtils::Installed->new(); my @missing = $inst->validate("File::BaseName"); # note the improper capitalization print @missing;
The validate method returns a list of the missing files. Some of the other methods could help, too.File::BaseName is not installed...
|
|---|