in reply to Re^2: locally installed modules not interfacing
in thread locally installed modules not interfacing

I think you're missing the point. HTTP::Request require's other modules. But, HTTP::Request may not be aware of your modified @INC (which you create with use lib). How can HTTP::Request load those if it doesn't know where to find them?

I don't know if this is the issue, perhaps a more knowledgeable monk can help.

<-radiant.matrix->
Larry Wall is Yoda: there is no try{} (ok, except in Perl6; way to ruin a joke, Larry! ;P)
The Code that can be seen is not the true Code
"In any sufficiently large group of people, most are idiots" - Kaa's Law
  • Comment on Re^3: locally installed modules not interfacing

Replies are listed 'Best First'.
Re^4: locally installed modules not interfacing
by mike hal (Initiate) on Sep 26, 2005 at 18:40 UTC
    ...Or maybe I don't tell the whole story :-) . In addition to the 'require full/path, I had tested this theory earlier by first setting the PERL5LIB environment variable and later by specifying the @INC values within the module themselves. Both appproaches had no effect.