That's a lot of output. Might I recommend some readmore tags? I'm focusing on a couple of lines:

Writing /home/mysite/perl-lib/lib/perl/5.8.4/auto/Text/ExtractWords/.p +acklist
and
# Error: Can't locate Text/ExtractWords.pm in @INC (@INC contains +: /home/.necha/mysite/.cpan/build/Text-Language-Guess-0.01/blib/lib / +home/.necha/mysite/.cpan/build/Text-Language-Guess-0.01/blib/arch /ho +me/mysite/perl-lib/i386-linux-thread-multi /home/mysite/perl-lib/i386 +-linux-thread-multi /home/mysite/perl-lib /etc/perl /usr/local/lib/pe +rl/5.8.4 /usr/local/share/perl/5.8.4 /usr/lib/perl5 /usr/share/perl5 +/usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl . /etc +/perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4 /usr/lib/ +perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/loc +al/lib/site_perl .) at /home/.necha/mysite/.cpan/build/Text-Language- +Guess-0.01/blib/lib/Text/Language/Guess.pm line 15.
From the latter line, we can see your PERL5LIB there as /home/mysite/perl-lib - which is what we expect. However, from the former line, we can see that we're actually installing to /home/mysite/perl-lib/lib/perl/5.8.4. Which is an annoying difference in thought between MakeMaker and perl. I know I've solved this before, but for some reason my employer's VPN server seems down, so I can't sneak in to take a peek. What I think it was, is that you just need to add "/lib" to your PERL5LIB:
export PERL5LIB=/home/mysite/perl-lib/lib
That said, I haven't tried this with CPAN - only when I have the tarballs already downloaded, and then I can make/make install quickly.


In reply to Re: Installing modules in personal lib directory - Just canīt make it work by Tanktalus
in thread Installing modules in personal lib directory - Just canīt make it work by Andre_br

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.