Is there anything equivalent or close in terms of functionality to Python\'s virtualenv, but for Perl?
I\'ve done some development in Python and a possibility of having
There's a tool called local::lib that wraps up all of the work for you, much like virtualenv
. It will:
@INC
in the process where it's used.PERL5LIB
and other such things for child processes.PATH
so that installed binaries can be found.eval $(perl -Mlocal::lib)
in your .profile
and then mostly forget about it.