Then (again, as mentioned) add a 'use lib' to your program:[user@host modules]$ tar xzvf Module-1.0.0.tar.gz [user@host modules]$ cd Module-1.0.0 [user@host Module-1.0.0]$ perl Makefile.PL PREFIX=$HOME/mylib [user@host Module-1.0.0]$ make && make test && make install [user@host Module-1.0.0]$ make && make test && make install [user@host modules]$ rm -rf Module-1.0.0
Just remember that you have to have the 'use lib' statement before the 'use Module;' statement.#!/usr/bin/perl -T use strict; use warnings; use lib '/home/user/mylib/lib/site_perl/5.6.0'; use Module; ...
Updated: Based on other feedback, I'd like to clarify that this technique can be used on a local system to create the install (if the system is binary compatible with the remote system, then it should even work for XS based modules) and then recursivly copied (ncftp is great for this) to the remote system.
amelinda - Thanks for pointing out that I missed the ftp only access.
In reply to Re: Convincing ISP to install a module
by mortis
in thread Convincing ISP to install a module
by Gerard
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |