in reply to How to add paths in @INC file

If you are trying to allow Perl to find modules that you are use'or require'ing, you can use lib ...
use lib '/path/to/my/libs'; use MySpecialLib;

mr.nick ...