Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Find if I have module

by ChrisS (Monk)
on Aug 30, 2006 at 17:05 UTC ( [id://570425]=note: print w/replies, xml ) Need Help??


in reply to Find if I have module

Try the technique listed here in its original context. Basically, you can try this:
use ExtUtils::Installed; my $inst = ExtUtils::Installed->new(); my @missing = $inst->validate("File::BaseName"); # note the improper capitalization print @missing;
In this case, the @missing array shows:
File::BaseName is not installed...
The validate method returns a list of the missing files. Some of the other methods could help, too.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://570425]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-03-28 16:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found