|
|
Question : how to modify perl @INC array
|
|
How do I modify @INC array ?
I want to be able to use a module that is installed in a different location of perl (than the one that I normally use). So I was told to modify INC array.
thanks.
|
Answer : how to modify perl @INC array
|
|
push (@INC,'/your/path/to/folder');
That might do.
JD
|
|
|
|