module_version

How do I tell what version of a module is installed?

CPAN

If you have cpan installed (type cpan in your command prompt), then
you can use:

For example:

will produce something like the following output:

Command Line

You can use perl from the command line to determine the module version.

For example:

This would produce something like:

ActiveState (Windows)

Like solution 2, you can use perl from the command line to determine the module version, only the quotes are slightly different:

For example:

ppm (Windows)

From your command line you can type ‘ppm’. If you type in:

ppm will display information about the modules installed. This does not include standard perl modules, so, for example,

will not return any data. However:

will return something like:

Scroll to Top