http://www.perlmonks.org?node_id=726359


in reply to To "use" expected version of .pm file

perl holds the paths to it's modules in the array @INC. A common way to manipulate that array is to add paths using use lib '/path/to/module'.
Also you might want to check the environment variable PERL5LIB.