Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi Beloved Monks

What is the repository that I need to add to my ppm in order to have the VMware::VmPerl module availobe for me on my computer?

Thanks

Replies are listed 'Best First'.
Re: VmPerl ppm
by Corion (Patriarch) on Feb 08, 2007 at 12:29 UTC

    According to Google, the module VMWare::VmPerl gets installed when you install VMWare ESX.

Re: VmPerl ppm
by OfficeLinebacker (Chaplain) on Feb 08, 2007 at 13:14 UTC
    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.