How can I check if a Perl module is installed on my system from the command line? -
I tried to check whether the XML :: Simple is installed in my system or not.
Pearl-E 'while (& lt; @ INC & gt;) {while (
The above one-liner was used to list all the modules installed in my system. However, this XML module does not list.
However, the following are okay.
perl -e "XML :: Simple Use"
What could be the problem?
You can check the following for a module's installation path:
Comments
Post a Comment