You have to use the full path to perl5.10.0 because, when you installed perl5.8.9, you must have run: rm -f config.sh Policy.sh. By doing that, you made perl5.8.9 the main perl; hence, 5.10.0 isn't your system perl anymore. Because the config.sh and Policy.sh of 5.10.0 was removed, you'll have to reinstall 5.10.0, removing the config.sh and Policy.sh for 5.8.9, if you want 5.10.0 to be the system perl.

One other thing, be very careful when authors list dependencies. They don't really make any distinction between core and site modules. The best thing to do, especially when you're just starting out, is use the CPAN shell. It'll take care of the dependencies for you.

One good way of telling if a module is core is to use corelist. For example from the command-line:

corelist File::Basename

It'll tell you if it's core or not. You could also get a list of core modules starting with File:: like this

corelist /^File::/ and it'll list the core modules starting with File::.


In reply to Re: "File::Basename" problems by Khen1950fx
in thread "File::Basename" problems by iksrazal

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.