in reply to Perl modules possible to place some where else

As others have pointed out, a use lib '/path-to/your-module/'; is what you need in your program.

If you want to install a module from the CPAN in a non-standard lib directory, just use the following:

perl Makefile.PL LIB=/your/lib/path PREFIX=/your/lib/path
-- vek --