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

I'm looking to install the Crypt::DES_EDE3 module (on a Windows 2003 server) using ppm. Where can I grab this module from? I simply went into a local Windows 2000 machine, typed in ppm install Crypt::DES_EDE3 and it worked fine but on the Windows 2003 just got the error "ppm install failed: Can't find any package that provides Crypt::DES_EDE3". Any help would be much appreciated.

Replies are listed 'Best First'.
Re: Crypt::DES_EDE3 for Windows
by marto (Cardinal) on Jan 20, 2010 at 14:31 UTC

    Sounds like the Windows 2003 machine does not have the same repository list as the Windows 2000 machine. See PPM::Repositories. Meanwhile you'll be able to install it via the command line, as described here

      Tried it from there unless I did something wrong I keep getting errors ("ppm install failed: 404 error" and the other error is "ppm install failed: Can't find any package that provides Crypt-DES for Crypt-DES_EDE3" if I try trouchelle site).

        Can you show us exactly what you tried which failed? Did you look at PPM::Repositories? Is your Windows 2003 the 64bit version?

      Hey marto, I don't have much experience downloading these modules and installing them so any help would be appreciated. I downloaded the tar file for 5.8 (which is installed) and extracted it into a temp directory. From there where should I go? Should I grab the Crypt directory (with DES_EDE3.pm) in it and copy to the Perl bin directory? Thanks again for the help.

        Have a look at A Guide to Installing Modules

        This will give you instructions for Windows including downloading nmake.exe which you'll use in place of "make" in the normal:

        perl Makefile.PL make make test make install

        process.

Re: Crypt::DES_EDE3 for Windows
by stro (Novice) on Jan 21, 2010 at 20:54 UTC
    What does "ppm repo list" say? It may be some problem with repositories setup. Also, do you use proxy with HTTP_proxy environment variable?