in reply to Term::ReadLine - Automated install?

I think that you mean Term::ReadLine::Perl. From the CPAN shell, just do
cpan> notest install Term::ReadLine::Perl
Update:
#!/usr/bin/perl use strict; use warnings; use CPAN; my $mod = 'Term::ReadLine::Perl'; CPAN::Shell->rematein("notest", "install", $mod);

Replies are listed 'Best First'.
Re^2: Term::ReadLine - Automated install?
by Anonymous Monk on Jul 28, 2010 at 06:10 UTC
    From the CPAN shell,

    That is interactive and can still prompt, he wants non-interactive

      You can always manually download the module and all its dependencies yourself.