How do I tell cpan to install all dependencies?

Edit:
After following Sinans link.
I tried setting these in cpan:

cpan> o conf prerequisites_policy follow
cpan> o conf commit

I still had to answer y a couple of times. (but fewer than before it feels like)

Any way to get it to always go ahead and install? I want to make it unattended.
Edit2:
It would seem that I want a flag to always trust cpan to do the right thing, if it suggests an answer I would like to follow it. (allway hit enter when it asks somthing)

link|improve this question

Perhaps I should add a feature to my cpan script to set the auto install environment variables based on the CPAN.pm setting. See tsee's answer, which is the other half of the problem. – brian d foy May 26 '09 at 13:19
feedback

9 Answers

up vote 7 down vote accepted

The latest and greatest answer to this question is to use cpanm instead (also referred to as App::cpanminus or cpanminus)!

DESCRIPTION

cpanminus is a script to get, unpack, build and install modules from CPAN and does nothing else.

It's dependency free (can bootstrap itself), requires zero configuration, and stands alone. When running, it requires only 10MB of RAM.

To bootstrap install it:

curl -L http://cpanmin.us | perl - --sudo App::cpanminus

or if you are using perlbrew simply

perlbrew install-cpanm

From then on install modules by executing (as root if necessary)

cpanm Foo::Bar
link|improve this answer
feedback

Try setting PERL_MM_USE_DEFAULT like so:

PERL_MM_USE_DEFAULT=1 perl -MCPAN -e 'install My::Module'

It should make CPAN answer the default to all prompts.

link|improve this answer
Any way to make this persistent, so you can just type "install My:Module" into cpan each time and it will remember this? Edit Config.pm? – Geoff Feb 16 at 16:27
If you're on linux, add the line export PERL_MM_USE_DEFAULT=1 to your ~/.bashrc – andersand May 9 at 13:01
feedback

Here's what I'm pretty sure you're looking for:

cpan> o conf prerequisites_policy follow
cpan> o conf commit
link|improve this answer
feedback

Maybe it's related to ExtUtils::AutoInstall or Module::AutoInstall being used. Try setting the PERL_AUTOINSTALL environment variable. (Cf. the documentation of those modules.)

link|improve this answer
That would be my guess. – Schwern May 24 '09 at 0:52
feedback

o conf build_requires_install_policy yes

This will change it from ask/yes to yes and stop it asking you.

link|improve this answer
feedback

Set prerequisites_policy in the configuration.

See http://search.cpan.org/~andk/CPAN-1.9304/lib/CPAN.pm#Config_Variables

link|improve this answer
Got me part of the way. – Nifle May 22 '09 at 17:21
2  
Are the prompts related to downloading module source? If so, see connect_to_internet_ok option. Otherwise, tell us what other prompts you are trying to avoid. – Sinan Ünür May 22 '09 at 19:02
Well all basically, these last ones was "optional modules". – Nifle May 22 '09 at 19:19
The problem is things that auto-install on their own. CPAN.pm doesn't get a chance to handle that stuff. See tsee's answer. – brian d foy May 26 '09 at 13:18
feedback

Personally I have only tried a couple of times to modify the settings in that way and have actually found it easier to drop into the CPAN.pm shell by giving cpan no arguments, then configuring CPAN.pm from the interactive prompt:

$ cpan
cpan> o conf init

This will initiate the CPAN.pm interfaces configuration utility. Simply run through it and specify "follow" where you need to ( I forget the question offhand ) and you should be good to go.

Regards,

Jeff

link|improve this answer
feedback

If you want a scripted solution, look at the accepted one. For me though, I found that holding the return key after typing the command for 10 seconds will probably accept all defaults :P

link|improve this answer
feedback

I have not tried it, but can you use

yes | cpan [options]

in your scenario?

link|improve this answer
1  
Not all of the questions are looking for an answer of "yes" – brian d foy May 28 '09 at 20:13
yes ''|cpan [options] would output just newlines. – FrozenFire Jan 21 at 15:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.