in reply to Figure out required versions
or perl -I/home/me/lib ... to have perl search your lib directory before the standard locations.use lib '/home/me/lib'; ...rest of script...
See perldoc perlmodinstall for details on how to install modules in your own directory - the key is using the PREFIX= option to Makefile.PL.
Creating a separate directory for version.pm makes it easy to uninstall it or to replace it with another version.
|
|---|