There are a couple of considerations:
- What type of access do you have on that host system?
If you have ssh or telnet access your life has become easier.
- If you have access to a c compiler and a make utility on that system you're fine, too.
If you are on a UN*X-like system you can do:
perl Makefile.PL PREFIX=~/private_modules
make
make test
make install
This will install the module in question into the private_modules
directory in your home directory.
Note that this is not guaranteed to work with all modules. See
ExtUtils::MakeMaker for details.
In general you can safely install your private modules into your own directory
and let perl look for packages in there first by doing:
use lib "~/my_private_modules_first";
print join ":", @INC;
Perl has the list of directories to search stored in its @INC array, so
you might want to play with that.
Of course check out
lib.pm also ;-).
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
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.