I want to install perl modules on a shared server on which I do not have root access. How can I do this? They also seem to have an older version of CPAN (it complains about that when running the command), is it possible to update the CPAN command being used from my account without requiring root access?
|
|
The easiest method I have found so far is to say
This assumes your profile is named
and simply use them the same way you would if the were installed in the root directories. What follows is a brief explanation of what the commands above do.
After those modules are installed we run
to set the environment variables needed to use the local modules and then
to ensure we will be able to use them the next time we log in. |
|||||||||||
|
|
http://perl.jonallen.info/writing/articles/install-perl-modules-without-root http://novosial.org/perl/life-with-cpan/non-root/ The main step in both sets of instructions involves local::lib module AFAIK, CPAN logic is contained in Perl module (CPAN.pm) which means you can also easily install the newer one in your local directory as you would with any other Perl module. Also, once you install your modules in non-standard location, check out these two questions on loading libraries from non-standard locations (some of the info is already available in the link above): How does a Perl program know where to find the file containing Perl module it uses? How is Perl’s @INC constructed? (aka What are all the ways of affecting where Perl modules are searched for?) |
|||||||
|
|
For completeness, this is the installation process of
|
|||
|
|