in reply to Re: Can't locate Unicode/Map.pm but it's installed and I THINK in @INC
in thread Can't locate Unicode/Map.pm but it's installed and I THINK in @INC

I would surely hope not.

The real answer is install modules in the user's home directory or a directory that is shared amongst all users, then add it to @INC:

use lib '/path/to/shared/dir';

Replies are listed 'Best First'.
Re^3: Can't locate Unicode/Map.pm but it's installed and I THINK in @INC
by cristj1 (Novice) on Jun 14, 2017 at 21:54 UTC
    DUH! This is my first PERL install. Didn't know some of the best practices so I just installed as root. I followed your suggestion, installed the module to user's home directory, and pointed the "use lib..." to it. BINGO! Thanks!