PDL installations can be really nice when they run smoothly, but when they don't ... here be monsters. For future reference, and especially for others who read this post with their own PDL installation woes, the best place to post questions would be the PDL mailing list, which is perldl at jack.hawaii.edu WHERE you replace jack with jach.

Here's my diagnosis of your problem. I assume you're somewhat familiar with makefiles, though if not you can skip over this diagnosis. Your error message indicates that you have some target in your makefile that depends on Config.pm, but Config.pm does not have a make rule. (In my makefile, the Config.pm dependence actually creeps in through the CONFIGDEP variable.) This should never happen because the Config.pm file should ALWAYS be created when you run Makefile.PL. That leads me to believe that your CPAN install process somehow managed to bork this step, which seems odd, to say the least.

Hopefully a few manual commands will fix this. Try this at the CPAN prompt:

cpan> look PDL # This will drop you into a shell # where you can issue commands by hand: shell> perl Makefile.PL shell> make

If that goes well, you can finish with a couple more commands:

shell> make test shell> make install shell> exit

Post back and let me know what happens when you issue the initial two make commands.

David

In reply to Re: PDL installation by pdltiger
in thread PDL installation by mili3431

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.