What happens when you type either of the following:

which prove

...or...

perldoc -l prove

Either of those should specify where prove resides. If one or the other produces a path, make sure that path is part of your environment's path. If neither of those produce a path then move on to trying:

perldoc -l App::Prove

If that produces a path you know it's at least on your system. But possibly not installed properly. Then you'll want to try:

perl -MApp::Prove -e 0

That should produce no output. If you get an error, App::Prove probably isn't properly installed, and you may need to fetch the distribution from CPAN and install it. But on the other hand, if you get the good sign (no output), then App::Prove is installed, and you're back to looking at your environment's path again.

I can't be sure this will be helpful, but it's part of the process of elimination that I would look into myself. You could, of course, always just "cpan App::Prove" all over again and try to get a fresh install.


Dave


In reply to Re: prove: command not found by davido
in thread prove: command not found by a_memory

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.