Warning: prerequisite Getopt::ArgvFile 1.07 not found. Warning: prerequisite Module::ScanDeps 1.21 not found. Warning: prerequisite PAR 1.014 not found. Warning: prerequisite PAR::Dist 0.22 not found. Warning: prerequisite Win32::Exe 0.17 not found.
You'll need to first install those modules (and any prerequisites that they list).
You'll see that one of those modules listed is PAR, and it's the module that contains PAR/Heavy.pm.

The simplest way of getting it done is to use the cpan utility (cpan.bat):
cpan -i PAR::Packer
But that won't work if you don't have an internet connection. It is possible to configure cpan to install from sources stored on the local machine - but I've no experience with that.
You'd need to check the cpan documentation - see perldoc cpan
This excerpt from that documentation looks promising:
# with just the dot, install from the distribution in the # current directory cpan .
That is (I think), put all of the source distributions (tar.gz files from CPAN) into the same folder on your local machine, cd to that directory and run:
cpan . -i Par::Packer
If you have trouble getting that working, ask about it in a new thread.
Or you can install Par::Packer and its dependency chain in the way you're doing it - it's a bit tedious, but it can be done that way if you want.

Cheers,
Rob

In reply to Re^17: Download Links for Dmake and MinGW by syphilis
in thread Download Links for Dmake and MinGW by 9mohit2

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.