in reply to installing local modules
This will install the module in question into the private_modules directory in your home directory.perl Makefile.PL PREFIX=~/private_modules make make test make install
In general you can safely install your private modules into your own directory and let perl look for packages in there first by doing:
Perl has the list of directories to search stored in its @INC array, so you might want to play with that.use lib "~/my_private_modules_first"; print join ":", @INC;
If you do not have direct access to the server, things get a bit more difficult, as you will have to prepare the modules by yourself on your local system first, and then upload them to the right directory on your server.
Kay
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: installing local modules
by BazB (Priest) on Jun 27, 2002 at 17:54 UTC |