Perl Install PAR:Packer Problems

前端 未结 3 1236
小鲜肉
小鲜肉 2020-12-31 23:33

My perl version is 5.16.2 on my Windows 7 64bit, I failed to install PAR:Packer. I tried active perl and strawberry perl , both got the same error. Can you please give me so

相关标签:
3条回答
  • 2020-12-31 23:43

    I simply changed the line 60 in .../perl64/Config.pm from

    `$^V eq 5.16.3`
    

    to

    `$^V eq 5.16.3 or $^V eq 5.16.0`
    

    and voila! My par-packer module 1.013 installed through ppm (ActiveState Perl 5.16.3) works ...

    0 讨论(0)
  • 2020-12-31 23:51

    I ran into this exact same error scenario with Perl 5.16.3 on my Windows 7 64 bit machine. I started my Perl tinkering with ActiveState and later installed other related programs like Komodo Edit and finally installed StrawberryPerl. After reading quite a few of these online posts I tried the manual dmake methods and whatever other suggestions I could find. I then tried uninstalling ActiveState. That didn't help either. Finally, I went on an uninstall binge and found that after uninstalling all of the ActiveState and Komodo applications (along with a bunch of other stuff I wasn't using anymore) I was able to successfully install and use pp in two simple steps from the cpan prompt:

    install CPAN

    install pp

    I was going to uninstall and re-install StrawberryPerl next but didn't have to. The install CPAN may not be necessary but it was suggested in the log output in one of my previously failed attempts so I figured I'd try that first. Hope this saves someone all the hassle I went to as a begginer.

    0 讨论(0)
  • 2021-01-01 00:00

    I'll start off with my own environment:

    • Windows 7 x64 en_US
    • Strawberry Perl v5.16.2 32bit

    I just confirmed that I do have PAR::Packer working on my environment. I'm running PAR::Packer version 1.014.

    There is a bug logged about PAR::Packer 1.013 failing to build on certain environments. The bug is logged on CPAN here: https://rt.cpan.org/Public/Bug/Display.html?id=77408

    I recommend trying one of the following paths forward (based on your build version requirements):

    1. Install PAR::Packer 1.0.14.
    2. Install the patched version of PAR::Packer 1.013 that is available at http://strawberryperl.com/package/kmx/perl-modules-patched/PAR-Packer-1.013_patched.tar.gz

    To build you will need any dependencies as well. Hopefully those work just fine through CPAN.

    Download either the patched version listed above or the latest version from the CPAN site, then execute:

    perl Makefile.pl
    dmake
    dmake test
    dmake install
    

    Keep in mind PAR::Packer requires a C/C++ compiler to build.

    0 讨论(0)
提交回复
热议问题