Dear PerlMonks,
I am new to Perl, and I need to install some modules on a machine in which I have no root (or any elevated) privileges. I looked around the internet and it appears that I will be better off using CPAN prompt since it can also install the dependencies, instead of manually installing the modules, and then go around installing the dependencies (also manually).
So, I tried using CPAN (perl -MCPAN -e shell) then followed configuration instructions, and then selected a local directory as location for doing Perl Makefile.pl (I chose PREFIX = <local directory> while doing the configuration) and also chose a local directory for 'make install' (using INSTALLMAN3DIR=<local dir>).
After this I get to the CPAN prompt. Now when I try to install module (say "install LWP") I get errors towards the very end (something like "make test failed").
What am I missing?
Thanks in advance.