in reply to Random numbers for windows 2000?

If you can't install stuff through ppm, try the old-fashioned way: Grab nmake and Math::Random then decompress the tar.gz file into a temporary directory, change into that directory and:
perl makefile.pl nmake nmake test nmake install
and you're done...

Of course, you'll have to check that nmake is in your path somewhere.

Hope that helps,
BrotherAde

Replies are listed 'Best First'.
More (less?) random numbers for windows
by tenya (Beadle) on Apr 29, 2001 at 21:48 UTC
    I discovered that nmake needs the microsoft C++ compiler (cl.exe), which I do not have, sigh.
    Tye also has a useful post on modules for windows:
    Re: Installing modules on Win32. Sorry, I don't know how to hyperlink this.

    Perhaps it is not possible to port random::math to win32 system
    (which is why ActiveState has not created a binary for it).
    Does anyone have this installed on win32?
    If not, any suggestions? I need to generate about 5e6
    random integers between 0 and 99 inclusive (uniform distribution) each time I run my program.
      Aaah... I see. nmake doesn't need cl.exe per se, but it does so in connection with modules that contain code in C++. I suggest you try installing the GNU development tools and utilities for Windows. They come with perl, a version of make and gcc, the GNU C++ compiler. They also give you the power of bash on Windows, so you should have seen a *nix-box at least from a distance.

      Hope that helps, if not, drop me another note and I'll explain specifics.
      BrotherAde


      Update
      I think I might be able to get my hands on a machine that has both perl and Visual C++ installed. I might be able to rig up a binary for you, just drop me a line.