http://www.perlmonks.org?node_id=1194386


in reply to Re^4: Install Module with no admin permission
in thread Install Module with no admin permission

Below is a version of what Haarg has kindly provided. Since you're having problems I've included the current working directory, listings of the extracted modules and the solution above using full paths:

marto@pihost:~$ pwd /home/marto marto@pihost:~$ ls drwxr-xr-x 9 marto marto 4096 Jul 6 13:17 ExtUtils-MakeMaker-7. +30 drwxr-xr-x 9 marto marto 4096 Jul 6 13:41 local-lib-2.000023 ...... marto@pihost:~$ eval `perl -I"/home/marto/local-lib-2.000023/lib" -Mlo +cal::lib` marto@pihost:~$ cd ExtUtils-MakeMaker-7.30 marto@pihost:~$ perl Makefile.PL && make test && make install .... this works without issue marto@pihost:~$ cd ../local-lib-2.000023 marto@pihost:~$ perl Makefile.PL && make test && make install .... again, this works without issue

Try to replicate this working setup, substituting paths where appropriate.