in reply to VmPerl ppm
Usually you need admin privileges on the machine to install modules into the directories that perl normally searches (except for the cwd). If this is a one-off thing (and you don't taint check), I would create the proper directories relative to the dir the script it in and drop the .pm file in there.#!/path/to/perl print join ", " , @INC;
|
|---|