When you have multiple perls installed, you must run perl Makefile.PL with the perl you want to later install the module on. Probably that wasn't the first one in your path, so you were installing your module on another instance. | [reply] [d/l] |
I have installed perl5.8 in a non default location (my home dir as I don't have root permissions).
Is Perl not on the system? If Perl is there, as I suspect, you could install the modules in your home directory since you do not have root. Then in your Perl program, you would specify their location with: use lib "/home/gwalsh/module-name".
| [reply] |