There are multiple installers for cpan modules available; I know of at least CPAN.pm (comes with perl,) CPANPLUS, and cpanminus.

What is the difference between the three?

What situations call for using one over the other?

Are there other module installers I should know about?

link|improve this question

feedback

4 Answers

up vote 16 down vote accepted

CPAN.pm (cpan) is the original client. It comes with Perl, so you already have it. It has the most features. It has a lot of configuration options to customize the way it works.

Its biggest limitation is its configuration. Although recent versions have improved it, it used to ask a lot of questions before you could start installing modules. People new to Perl might not know the right answers.


cpanminus (cpanm) is an attempt to make a zero-configuration client that automatically does the right thing for most users. It's also designed to run well on systems with limited resources (e.g. a VPS). It doesn't come with Perl, but it's easy to install. It integrates easily with local::lib.

Its biggest limitation is its lack of configuration. If you want to do something unusual, it may not support it.


CPANPLUS (cpanp) is an attempt to make a CPAN API that Perl programs can use, instead of an app that you use from the command line. The cpanp shell is more of a proof-of-concept, and I don't know of any real advantages to using it.


In summary, I'd recommend either cpan or cpanm. If you have trouble configuring cpan, try cpanm. If your situation is unusual, try cpan.

link|improve this answer
Thank you! That summary is exactly what I needed. – Sean McMillan May 2 '11 at 22:12
sorry, please disregard – ysth May 3 '11 at 1:34
1  
The latest cpan(1) also integrates with local::lib :) – brian d foy May 3 '11 at 5:33
feedback

It's impossible answer this question because it is too subjective. :)

From my point of view: cpanm is the simplest way install perl modules. You can install cpanm with:

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

and after it you can install modules with simple:

cpanm Some::Module

You can use cpanm for mirroing (part of) cpan to you local machine too, so IMHO cpanm is the best for the most common cpan needs.

link|improve this answer
That is a fabulous one liner! – Joshua Hoblitt Nov 3 '11 at 4:50
feedback

Are there other module installers I should know about?

If you're using a Linux distribution that packages CPAN modules, then it's worth using their package installation program to install modules. For example, Ubuntu/Debian have a huge number of CPAN modules that you can install using 'apt' and Red Hat/Centos/Fedora have a number that you can install using 'yum'.

link|improve this answer
feedback

CPAN is the standard. cpanminus (cpanm) asks fewer questions (best most of the time). I don't know anyone that uses cpanplus.

Since what these modules do is download, compile and install (place files in correct places) they all should do the same task. Some of the difference has to do with the permissions level you have. Perhaps you want to install some things local to your user and some things globally then you need a finer adjustment. Developers may also need to control/interrupt the process for debugging etc.

For daily use, use cpanm, unless you are too lazy to install it, then CPAN is fine.

link|improve this answer
I'm sick of asking this. Please explain the downvote! – Joel Berger May 3 '11 at 12:42
I didn't downvote, but please read on meta why comment-on-downvote was not made compulsory - they touch some pretty good arguments... no need to use hard words. – Konerak May 3 '11 at 19:22
@Konerak, when my answer has the same content (posted earlier, not so eloquent) as the accepted and well voted answer, I get irked when mine is not only ignored but rather downvoted – Joel Berger May 4 '11 at 1:19
I see what you mean and I too love getting my downvotes explained (at least that way I can learn something), but don't underestimate eloquence and formatting ;) – Konerak May 4 '11 at 6:20
feedback

Your Answer

 
or
required, but never shown

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