Hi, zapatafa

On OS X it is highly recommended (by Apple as well as by users) to leave the system installation of Perl completely alone (don't even install any modules to it) and use a local installation for your development work.

The easiest way to do this is to install Perlbrew (and friends) and let it handle managing your perls. Take a couple of minutes to read the instructions there and you'll have it up and running in no time. Once you are using Perlbrew you can install a new version of Perl (or any number of different ones) and perlbrew switch to it; then any modules you install will be in your local home directory and you won't need to become root to install them. This will simplify your life going forward.

When you do this pay attention to the configuration of App::cpanminus and/or CPAN.pm, as the cause of your original problem is almost certainly, as you suspected, an error therein, particularly in the list of CPAN mirror sites to check for modules.

You can see what mirrors you currently have configured by looking for urllist in the output of the OS shell command

$ cpan -J
or, if you prefer the CPAN shell, with
cpan[1]> o conf

Hope this helps!

edit: show how to examine current CPAN conf.

The way forward always starts with a minimal test.

In reply to Re: How do I install the Tk module by 1nickt
in thread How do I install the Tk module by zapatafa

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.