Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
 I havn't tried it yet, but it may be possible to put the GD package 
on your remote machine if they let you compile. You should
be able to ssh to your homedir and do it. Here is an excerpt from
the mod-perl-in-homedirs.html.

8.1. Installing Perl Modules into a Directory of Choice

   Since without superuser permissions you aren't allowed to install
   modules into system directories like /usr/lib/perl5, you need to find
   out how to install the modules under your home directory. It's easy.

   First you have to decide where to install the modules. The simplest
   approach is to simulate the portion of the / file system relevant to
   Perl under your home directory. Actually we need only two directories:

/home/stas/bin
/home/stas/lib

   We don't have to create them, since that will be done automatically
   when the first module is installed. 99% of the files will go into the
   lib directory. Occasionally, when some module distribution comes with
   Perl scripts, these will go into the bin directory. This directory
   will be created if it doesn't exist.

   Let's install the CGI.pm package, which includes a few other CGI::*
   modules. As usual, download the package from the CPAN repository,
   unpack it and chdir to the newly-created directory.

   Now do a standard perl Makefile.PL to prepare a Makefile, but this
   time tell MakeMaker to use your Perl installation directories instead
   of the defaults.

% perl Makefile.PL PREFIX=/home/stas

   PREFIX=/home/stas is the only part of the installation process which
   is different from usual. Note that if you don't like how MakeMaker
   chooses the rest of the directories, or if you are using an older
   version of it which requires an explicit declaration of all the target
   directories, you should do this:

% perl Makefile.PL PREFIX=/home/stas \
  INSTALLPRIVLIB=/home/stas/lib/perl5 \
  INSTALLSCRIPT=/home/stas/bin \
  INSTALLSITELIB=/home/stas/lib/perl5/site_perl \
  INSTALLBIN=/home/stas/bin \
  INSTALLMAN1DIR=/home/stas/lib/perl5/man  \
  INSTALLMAN3DIR=/home/stas/lib/perl5/man3

   The rest is as usual:

% make
% make test
% make install

 

In reply to Re: Is it possible to use modules without installing them? by zentara
in thread Is it possible to use modules without installing them? by Nemp

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-19 08:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found