If you don't have permission to install a Perl module into the system Perl directories, you will not be able to use CPAN or yum or atp-get etc to install the module. You have to manually install it. Here are the steps:
$ tar zxf module-name.tgz
$ cd module-name
$ perl Makefile.PL PREFIX=/your-custom-dir
$ make
$ make test
$ make install
PERL5LIB=/home/path/lib:/usr/another/path/lib; export PERL5LIB
$ PERL5LIB=/home/path/lib:/usr/another/path/lib; export PERL5LIB
$ perl -e 'use module-name'
If you don't see any error message, you have successfully installed and configured the Perl module in a local custom location.
Recent comments
2 weeks 5 days ago
3 weeks 6 days ago
7 weeks 4 days ago
32 weeks 4 days ago
33 weeks 3 days ago
44 weeks 3 days ago
45 weeks 5 days ago
1 year 2 weeks ago
1 year 2 weeks ago
1 year 3 weeks ago