in reply to .htaccess for Locating Locally Installed Perl

Run this command line snippet and check whether the paths shown agree with your $PERL5LIB environment variable. It looks to me if you might have a discrepancy somewhere; /home/rsch/bioinfo/.perl/bin vs. /home/rsch/bioinfo/lib/perl5.

perl -le 'print for @INC;'

I hope this helps.

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^2: .htaccess for Locating Locally Installed Perl
by monkfan (Curate) on Mar 28, 2007 at 09:08 UTC
    Hi johngg,
    Following your suggestion here is what I have:
    bioinfo@sf3:~[505]$ perl -le 'print for @INC;' /home/rsch/bioinfo/lib/perl5/site_perl/5.8.7/sun4-solaris /home/rsch/bioinfo/lib/perl5/site_perl/5.8.7 /home/rsch/bioinfo/.perl/lib/5.8.7/sun4-solaris /home/rsch/bioinfo/.perl/lib/5.8.7 /home/rsch/bioinfo/.perl/lib/site_perl/5.8.7/sun4-solaris /home/rsch/bioinfo/.perl/lib/site_perl/5.8.7 /home/rsch/bioinfo/.perl/lib/site_perl .

    Regards,
    Edward