Secalles has asked for the wisdom of the Perl Monks concerning the following question:

Hiii

I'm trying to install Par::Packer with ppm.

I'm in a windows XP professional and have activeperl 5.12.2 installed in my machine and I'm getting this error.
C:\>ppm install PAR::Packer Downloading ActiveState Package Repository packlist...done Updating ActiveState Package Repository database...done Downloading bribes packlist...not modified Syncing site PPM database with .packlists...done Syncing perl PPM database with .packlists...done ppm install failed: Can't find any package that provides PAR::Packer
Tryed to use cpan but it says that i dont have perl58.dll and show me a lot of errors.

I was reading some other foruns and information but i found no answer , is PAR-Packer 1.009 works for me? what should I do?

Thanks

Replies are listed 'Best First'.
Re: PAR::Packer Installation
by jellisii2 (Hermit) on Apr 29, 2011 at 15:20 UTC
    Add the trouchelle repo. Activestate doesn't have it. I don't know about bribes as I don't use it.

      Owh i got it now ... Thanks

      For people that are lost like me ...

      Here is the deal

      ppm rep add trouchelle.com http://trouchelle.com/ppm/

      – for builds 817 and below (Perl 5.8 with PPM3)

      ppm rep add trouchelle.com http://trouchelle.com/ppm/

      – for builds 820 and above (Perl 5.8 with PPM4)

      ppm rep add trouchelle.com http://trouchelle.com/ppm10/

      – for builds 1000 and above (Perl 5.10 with PPM4)

      ppm rep add trouchelle.com http://trouchelle.com/ppm12/

      – for builds 1200 and above (Perl 5.12 with PPM4)

      And them normal ppm

      ppm install PAR-Packer Downloading PAR-Packer-0.991...done Downloading Win32-Exe-0.15...done Unpacking PAR-Packer-0.991...done Unpacking Win32-Exe-0.15...done Generating HTML for PAR-Packer-0.991...done Generating HTML for Win32-Exe-0.15...done Updating files in site area...done 74 files installed

      More info here: http://trouchelle.com/perl/ppmrepview.pl

      I wish to add a few more things , i stepped in another problem and thats how i solved it

      In C:\Perl\lib\Config.pm I had to change 1 line to make it work

      The Forum Reference is here http://www.perlmonks.org/?node_id=866030

      Find this line:

      $^V eq 5.12.2 or die "Perl lib version (5.12.2) doesn't match executable version + (" . sprintf("v%vd",$^V) . ")";

      Replace with

      $^V eq 5.12.2 or $^V eq 5.12.0 or die "Perl lib version (5.12.2) doesn't match executable version + (" . sprintf("v%vd",$^V) . ")";
        Thanks Secalles for the details. It is really nice. I am trying to install the PAR-PACKER module. But couldn't succeed, I am doing the following steps: my OS is Window 7 and installed version of Perl is 5.10.1 C:\Users\user>ppm install PAR-Packer ppm install failed: Can't find any package that provides PAR-Packer C:\Users\user>ppm rep add trouchelle.com http://trouchelle.com/ppm10/ Downloading trouchelle.com packlist...done Updating trouchelle.com database...done Repo 3 added. After adding the repository I cannot able to see any packages available to install in PPM preferences. it says #Pkgs is 0. I have executed the same command again , it is still showing an error C:\Users\user>ppm install PAR-Packer ppm install failed: Can't find any package that provides PAR-Packer Thanks in advance to let me know if I miss something.