in reply to VmPerl ppm

If I had no idea whatsoever, I would write a quick test:
#!/path/to/perl print join ", " , @INC;
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.

I like computer programming because it's like Legos for the mind.