If Strawberry Perl is installed from their .exe file, how can we find out which modules are installed

The core modules (ie the modules that are installed by default in all builds of Windows perl) will be in the perl/lib folder, and all additional modules will be in perl/vendor/lib.

There's also DISTRIBUTIONS.txt that lists all of the modules that were installed into perl/vendor/lib.
Look for it in the top level perl folder. (I assume the executable file installs DISTRIBUTIONS.txt - though I always install Strawberry's "portable edition" that comes as a zip file, so I can't be sure.)

Other than that, you can always check for the existence of a specific module by trying to load it.
C:\>perl -MSome::Module -e 1 Can't locate Some/Module.pm in @INC (you may need to install the Some: +:Module module) (@INC contains: C:/_64/strawberry-5.28.0/perl/site/li +b C:/_64/strawberry-5.28.0/perl/vendor/lib C:/_64/strawberry-5.28.0/p +erl/lib). BEGIN failed--compilation aborted. C:\>perl -MLWP::UserAgent -e 1 C:\>
Cheers,
Rob

In reply to Re^2: Strawberry Perl Guide by syphilis
in thread Strawberry Perl Guide by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.