Your
use lib statement is incorrect. You only need to point to the top level of your library. So try
use lib "c:\PERL\lib";
Perl uses the package name to find the location of the module. So, since you said the lib is
c:\PERL\lib\crypt\blow fish\blowfish.pl, Perl is looking in
c:\PERL\lib\crypt\blow fish\blowfish.pl\Crypt\Blowfish for the file Blowfish.pm.
My question is did you download the module and add it correctly? If you used ppm, then the module should be in c:\perl\site\lib\. If you didn't use ppm, I would suggest trying that first next time. If you didn't use ppm, did you use nmake to build this module? It also would put the module in c:\perl\site\lib\. If you didn't use either, you better read the ReadMe again.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.