in reply to Apache2::Request - problems installing

I suspect you installed the module for the system perl while a different perl is being used for your program. You could use App::perlbrew to manage your perl installs more easily.
  • Comment on Re: Apache2::Request - problems installing

Replies are listed 'Best First'.
Re^2: Apache2::Request - problems installing
by cp (Initiate) on Jul 11, 2012 at 17:47 UTC
    yes, i suspect that is true too. Cuz when I look for all instances of request.pm, this is what I get:

    /usr/lib/perl5/site_perl
    /usr/lib/perl5/core_perl

    if i had the right package that my program is looking for, would i have something like:
    /usr/lib/perl5/Apache2/
    in addition to the other 2 entries?

    I will try to take a look at App::perlbrew. But if you have any other suggestions on how to fix this problem / what to try to confirm what the problem is, i would appreciate it

      You may like to install this module via CPAN (try running "cpan") and local::lib, which manages all package installations in the home directory, without any need to be superuser.
      Sorry if my advice was wrong.
        i don't have access to internet from this machine so i can't run cpan. but with regards to the local::lib - do you mean that i should try to use this library in my test program and see what happens? sorry. i'm just new with linux and perl so i might be asking some really obvious / silly questions. thanks.