Dear all,
I'm trying to install Readonly.pm. I couldn't install at the default path as I don't have root permission.
I've therefore installed it in ~misc/perl_lib, where I do have permissions, by typing
perl Makefile.PL PREFIX=~/misc/perl_lib;
make;
make test;
make install;
I then copied Readonly.pm to ~/misc/perl_lib (it was buried in ~/misc/perl_lib/lib/perl5/site_perl/5.8.5/ ) and added
...
use lib '~/misc/perl_lib';
...
to the top of my script. I got a
can't locate Readonly error, so I tried adding
...
use lib '~/misc/perl_lib/lib/perl5/site_perl/5.8.5/';
...
but still got the
can't find error, as below, even though the correct diretories seem to be in @INC:
Can't locate Readonly.pm in @INC (@INC contains:
~/misc/perl_lib/lib/perl5/site_perl/5.8.5/
~/misc/perl_lib
/usr/lib64/perl5/5.8.5/x86_64-l....etc
Any suggestions??
thanks!
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.