in reply to Geo::Coder reference

Run this:
#!/usr/bin/perl use strict; use warnings; use CPAN; CPAN::Shell->install(qw( Test::More Pod::Man File::Spec Data::Dumper ExtUtils::MakeMaker DB_File Class::Data::Inheritable Class::Accessor Carp Carp::Assert base SDERLE/Geo-TigerLine-0.02.tar.gz Geo::Fips55 Geo::StreetAddress::US Geo::Coder::US));
Then run this:
#!/usr/bin/perl -l use strict; use warnings; use Geo::Coder::US; print $Geo::Coder::US::VERSION;

Replies are listed 'Best First'.
Re^2: Geo::Coder reference
by Anonymous Monk on Apr 16, 2012 at 08:53 UTC

    Why assume root, or a configured CPAN?

Re^2: Geo::Coder reference
by Da_Skipper (Initiate) on Apr 22, 2012 at 21:46 UTC
    Thanks, that worked, mostly.

    I had to add one more line as a pointer to the local database after it was installed on the server, then it worked fine.

    Geo::Coder::US->set_db( "/path_to_database_on_my_server" );

    Thanks to all who replied!