It appears the only file ppm downloaded was Util.pm into my PDL folder
That's fine, so long as the dependencies listed under PREREQ_PM in the Makefile.PL are met. PDL::Util is pure perl and Util.pm is the only file needed for PDL::Util to be functional. This works ok for me on MS Windows (version 0.010 of PDL::Util):
use strict;
use warnings;
use PDL;
use PDL::Util 'add_pdl_method';
add_pdl_method({'getArray' => 'unroll'});
print "OK\n";
(Btw, the the perldl mailing list is an excellent resource for PDL issues.)
Cheers, Rob
UPDATE: For the latest and most "feature-packed" versions of PDL (via PPM), including the latest devel release, refer to the wiki entry on installing PDL on Windows. | [reply] [d/l] [select] |
ppm connects over the internet in the default mode.
I you do not have interned connectivity, then you have to go find the .ppd file, download it yourself. Then you can use ppm to install it.
look at: ppm 10xx. If that doesn't work search for PDL .ppd or other variations on this theme. Get the .ppd file onto your machine locally via "sneaker net" or whatever and then use ppm. | [reply] |