in reply to Re^3: Chart::Clicker Question
in thread Chart::Clicker Question
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!!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Chart::Clicker Question
by Anonymous Monk on Oct 31, 2010 at 15:29 UTC | |
by Perobl (Beadle) on Oct 31, 2010 at 16:41 UTC | |
by Anonymous Monk on Oct 31, 2010 at 17:04 UTC | |
by Perobl (Beadle) on Nov 01, 2010 at 14:34 UTC |