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

while iam trying like this

ppm install http://theoryx5.uwinnipeg.ca/ppmpackages/Math-Pari.ppd, Installing package 'http://theoryx5.uwinnipeg.ca/ppmpackages/Math-Pari +.ppd'... Error installing package 'http://theoryx5.uwinnipeg.ca/ppmpackages/Mat +h-Pari.ppd': Could not locate a PPD file for package //theoryx5.uwinnipeg.ca/ppmpackages/Math-Pari.ppd

i can't download those modules throw PPM or CPAN
bcoz iam in proxy server and i can do only perl
Makefile.PL i can't do make ,maketest,make install those not supporting my system
how to install math::pari to windows
i have VC++ compiler,MATH::Pari module and Pari-2-3-0.exe

tell me steps to install or tell me where i can find complied Math::Pari moule for windows

Edit: g0n - removed font tags, added code tags

Replies are listed 'Best First'.
Re: installing Math::pari
by Corion (Patriarch) on Jul 01, 2006 at 13:31 UTC

    Maybe you missed planetscape's reply to your initial question:

    Please have a look at A guide to installing modules for Win32, which has detailed instructions on how to use PPM and how to set it up so it works behind a proxy.

    Alternatively, as you claim to have VC, you should be able to compile the Math::Pari module by issuing the following commands after you've downloaded and unpacked the Math::Pari distribution:

    "%VCToolkitInstallDir%\vcvars32.cmd" perl Makefile.PL nmake nmake test nmake install

    As an aside, please don't use FONT tags to colour your post as they clash with the colours people set up for their background. Use <code>...</code> tags to show console input and program output and source code.

Re: installing Math::pari
by jdtoronto (Prior) on Jul 01, 2006 at 18:03 UTC
      i created local repository ,but where to download ppd? where i can find ppds
        The idea is that you go to the link posted by jdtoronto ( http://theoryx5.uwinnipeg.ca/ppms/x86/Math-Pari.tar.gz ) and download the Math-Pari zip. Then extract that zip file to some folder, 'cd' to that folder and do what the Readme tells you to do. However ... don't know if it was just me ... or if the website was down when I tried .. or what ... but I couldn't download the zip file. As an alternative, download http://theoryx5.uwinnipeg.ca/ppms/x86/Math-Pari.tar.gz and place it in some folder and 'cd' to that folder. In the same folder, place a file named Math-Pari.ppd that looks like this:
        <SOFTPKG NAME="Math-Pari" VERSION="2,010500,0,0"> <TITLE>Math-Pari</TITLE> <ABSTRACT>Perl interface to PARI</ABSTRACT> <AUTHOR>Ilya Zakharevich &lt;cpan@ilyaz.org&gt;</AUTHOR> <IMPLEMENTATION> <OS NAME="MSWin32" /> <ARCHITECTURE NAME="MSWin32-x86-multi-thread-5.8" /> <CODEBASE HREF="Math-Pari.tar.gz" /> </IMPLEMENTATION> </SOFTPKG>
        Then run:
        ppm install Math-Pari.ppd

        Cheers,
        Rob