in reply to Changing @INC path detail

The preferred way to add directories to @INC is like this:
use lib qw(/path/to/dir1 /path/to/dir2 ...);

There's documentation here.