In Windows, Perl modules are installed in C:/Perl64/site/lib/
. What is the corresponding location in an Ubuntu system?
To find out where a module is installed, you can use:
perl -E'use Some::Module; say $INC{"Some/Module.pm"};'
You can find out where perl
will look (@INC
) using
perl -V # Uppercase "V"
or
perl -E'say for @INC'
I don't know why you'd want to know, so I'm not quite sure what you are actually looking for. A more detailed question could lead to a better answer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With