As I understand it, all perl libraries are stored in /usr/local/lib/perl/
And if there is no access to this directory, is it possible to somehow load the paths to its libraries into the @INC array and how?
No need to modify this variable.
libraries can be:
use lib '/home/your_name/perl5_dir';
.lib
directory there, copy the modules into it and in the script write use lib 'lib';
. Consoles are not needed for this. - user6550Source: https://ru.stackoverflow.com/questions/326593/
All Articles