in reply to Can locate loadable module even though it's in the INC path
You should notice the words "loadable object" in your error message.C:\>perl -MModule::Which::Does::NOT::EXIST -e 1 Can't locate Module/Which/Does/NOT/EXIST.pm in @INC (@INC contains: C: +/perl/lib C:/perl/site/lib .). BEGIN failed--compilation aborted. C:\>
Basically you're missing MD5.dll (the loadable object) because you did not install your module correctly. Read A guide to install modules to learn how to properly install modules.
|
|---|