in reply to Perl modules possible to place some where else

Not "instead of" but "before":
use lib "/root/of/your/module/hierarchy";
That will make perl look into that directory tree first - only if the module isn't found there, will it start looking through the other lib directories.

Replace the string in quotes with the true root of your hierarchy, naturally...