in reply to Perl Module Question

You can create a directory like c:\perl\mylibs and set the PERL5LIB environment variable. You can then put your modules there and perl will find them.
You can even create this directory on a shared device/network drive, so every machine in the network can access them without installation.


holli, /regexed monk/

Replies are listed 'Best First'.
Re^2: Perl Module Question
by Anonymous Monk on Jan 24, 2006 at 15:56 UTC
    Just have to create a directory called like Error inside of the c:\perl\site\lib\ and place the module in there.
    It can be called in the programs like,
    Error::YourModule;