in reply to Re: Regex Question
in thread Regex Question

Ahh... but I can't use the URI module as it's not installed and I can't get it installed.

Replies are listed 'Best First'.
Re^3: Regex Question
by Corion (Patriarch) on Jan 04, 2009 at 09:33 UTC
Re^3: Regex Question
by ikegami (Patriarch) on Jan 04, 2009 at 06:35 UTC

    Then you have a broken Perl. It comes with Perl (No, only with ActivePerl)

    What problems are you having while trying to install it?

      I checked the Perl Core Modules and didn't see it in there. Where else do I check to see if it's a core module or am I totally off base?
        Sorry, I realized my mistake as soon as I said it. What problems are you having while trying to install it?
      It's a friend's web server and he doesn't have that kid of clout.

        You don't need clout. If you can install a script, you can install a module. Just install it locally using:

        perl Makefile.PL PREFIX=~ LIB=~/lib/perl5 make make test make install

        And either add the following in your script:

        use lib "$ENV{HOME}/lib/perl5/";

        or add the following to your login script (.bash_profile):

        export PERL5LIB=~/lib/perl5

        No special permissions needed.

        A reply falls below the community's threshold of quality. You may see it by logging in.