Thank you. I actually happened upon this list earlier and have been using it.

Initially, I installed all of these modules on our server (Red Hat). This weekend, I installed everything locally on my Mac. The installation on my Mac is better. I was able to run the program above and display the chart as expected.

However, this really isn't an area where I have tremendous expertise! When I use your list as a guide to verify that all modules are installed, I run into some problems. I'm using the following program to check my installed modules:

#!/usr/local/bin/perl use ExtUtils::Installed; my $instmod = ExtUtils::Installed -> new(); print "\n\nPerl Modules:\n\n"; foreach my $module ($instmod -> modules()) { my $version = $instmod -> version($module) || "???"; print "$module -- $version\n"; }; print "\n\nPerl Modules Are Stored Here:\n\n"; print map { $_ . "\n" } @INC;

Many of the modules show up. Many do not. I think all of the modules are loaded, but some are buried. For example, Module::Pluggable is installed here on my Mac:

/Library/Perl/Updates/5.8.9/darwin-thread-multi-2level/Module

Module::Pluggable is one of the modules that is NOT showing up via the above program.

It seems like the modules in the Updates directory aren't showing up when I run the small program above. However, @INC includes: /Library/Perl/Updates/5.8.9/darwin-thread-multi-2level

Maybe this isn't even a problem?

If is use the following in a test program:

use Module::Pluggable;

It doesn't throw any errors.

If this is acceptable, then I think I have a good local install on my Mac. I still have to check the external server.

Am I on the right track??? I feel like I'm in over my head with Chart::Clicker!

Thank you!!!


In reply to Re^4: Chart::Clicker Question by Perobl
in thread Chart::Clicker Question by Perobl

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.