vote up 9 vote down star
2

I get this error:

Can't locate Foo.pm in @INC

Is there an easier way to install it than downloading, untarring, making, etc?

flag
....err, the constant reverting of edits is slightly.. childish. The "how can I" prefix is irrelevant, but the original author obviously doesn't want it.. – dbr Nov 26 '08 at 11:58

12 Answers

vote up 23 vote down check

On Unix:

usually you start cpan in your shell:

# cpan

and type

install Chocolate::Belgian

or in short form:

cpan Chocolate::Belgian

On Windows:

If you're using ActivePerl on Windows, the PPM (Perl Package Manager) has much of the same functionality as CPAN.pm.

Example:

# ppm
ppm> search net-smtp
ppm> install Net-SMTP-Multipart

see How do I install Perl modules? in the CPAN FAQ

Many distributions ship a lot of perl modules as packages.

  • Gentoo: category dev-perl
  • Debian: apt-cache search 'perl$'

You should always prefer them as you benefit from automatic (security) updates and the ease of removal. This can be pretty tricky with the cpan tool itself.

For Gentoo there's a nice tool called g-cpan which builds/installs the module from CPAN and creates a Gentoo package (ebuild) for you.

link|flag
The short form is just "cpan Chocolate::Belgian" from the command line :) – brian d foy Sep 27 '08 at 18:56
IIRC the latest ActivePerl no longer has command-line ppm, it now opens a fancy GUI. – Kev Nov 8 '08 at 17:18
vote up 0 vote down

On Fedora you can use

# yum install foo

as long as Fedora has an existing package for the module.

link|flag
vote up 0 vote down

Otto made a good suggestion. This works for Debian too, as well as any other Debian derivative. The missing piece is what to do when apt-cache search doesn't find something.

$ sudo apt-get install dh-make-perl build-essential apt-file
$ sudo apt-file update

Then whenever you have a random module you wish to install:

$ cd ~/some/path
$ dh-make-perl --build --cpan Some::Random::Module
$ sudo dpkg -i libsome-random-module-perl-0.01-1_i386.deb

This will give you a deb package that you can install to get Some::Random::Module. One of the big benefits here is man pages and sample scripts in addition to the module itself will be placed in your distro's location of choice. If the distro ever comes out with an official package for a newer version of Some::Random::Module, it will automatically be installed when you apt-get upgrade.

link|flag
vote up 1 vote down

Lots of recommendation for CPAN.pm, which is great, but if you're using Perl 5.10 then you've also got access to CPANPLUS.pm which is like CPAN.pm but better.

And, of course, it's available on CPAN for people still using older versions of Perl. Why not try:

$ cpan CPANPLUS
link|flag
Heh, that's cute. Use CPAN.pm to replace itself with CPANPLUS. :) – brian d foy Oct 8 '08 at 7:26
vote up 4 vote down

Also see Yes, even you can use CPAN. It shows how you can use CPAN without having root or sudo access.

link|flag
vote up 6 vote down

A couple of people mentioned the cpan utility, but it's more than just starting a shell. Just give it the modules that you want to install and let it do it's work.

$prompt> cpan Foo::Bar

If you don't give it any arguments it starts the CPAN.pm shell. This works on Unix, Mac, and should be just fine on Windows (especially Strawberry Perl).

There are several other things that you can do with the cpan tool as well. Here's a summary of the current features (which might be newer than the one that comes with CPAN.pm and perl):

-a Creates the CPAN.pm autobundle with CPAN::Shell->autobundle.

-A module [ module ... ] Shows the primary maintainers for the specified modules

-C module [ module ... ] Show the Changes files for the specified modules

-D module [ module ... ] Show the module details. This prints one line for each out-of-date module (meaning, modules locally installed but have newer versions on CPAN). Each line has three columns: module name, local version, and CPAN version.

-L author [ author ... ] List the modules by the specified authors.

-h Prints a help message.

-O Show the out-of-date modules.

-r Recompiles dynamically loaded modules with CPAN::Shell->recompile.

-v Print the script version and CPAN.pm version.

link|flag
vote up 11 vote down

I note some folks suggesting one run cpan under sudo. That used to be necessary to install into the system directory, but modern versions of the CPAN shell allow you to configure it to use sudo just for installing. This is much safer, since it means that tests don't run as root.

If you have an old CPAN shell, simply install the new cpan ("install CPAN") and when you reload the shell, it should prompt you to configure these new directives.

Nowadays, when I'm on a system with an old CPAN, the first thing I do is update the shell and set it up to do this so I can do most of my cpan work as a normal user.

Also, I'd strongly suggest that Windows users investigate strawberry Perl. This is a version of Perl that comes packaged with a pre-configured CPAN shell as well as a compiler. It also includes some hard-to-compile Perl modules with their external C library dependencies, notably XML::Parser. This means that you can do the same thing as every other Perl user when it comes to installing modules, and things tend to "just work" a lot more often.

link|flag
vote up 0 vote down

The standard way which should work on Linux, Unix , Strawberry Perl (for windows), etc... is

sudo perl -MCPAN -e 'install Foo'

Or you can start a shell via

sudo perl -MCPAN -e 'shell'

then once the cpan shell has started you type

install Foo

or simply type help for a list of commands.

The first time you run any of these commands you might be required to configure CPAN by answering a few questions.

Most perl distributions provide a cpan shell command so you can start it with cpan instead of perl -MCPAN -e 'shell'

If you are using Active State perl on win32 the easiest way is to install modules using Perl Package Manager provided with the distribution

You do this you type:

ppm install Foo
link|flag
You can also just say "$ cpan Foo::Bar" to install directly from the command line. No fancy one-liner or CPAN shell necessary. :) – brian d foy Sep 27 '08 at 18:58
vote up 0 vote down

2 ways that I know of :

USING PPM :

With Windows (ActivePerl) I've used ppm

from the command line type ppm. At the ppm prompt ...

ppm> install foo

or

ppm> search foo

to get a list of foo modules available. Type help for all the commands

USING CPAN :

you can also use CPAN like this (*nix systems) :

perl -MCPAN -e 'shell'

gets you a prompt

cpan>

at the prompt ...

cpan> install foo  (again to install the foo module)

type h to get a list of commands for cpan

link|flag
Beat me by 20 secs :-) – Pat Sep 15 '08 at 19:29
You can also just say "$ cpan Foo::Bar" to install directly from the command line. No fancy one-liner or CPAN shell necessary. :) – brian d foy Sep 27 '08 at 18:58
vote up 0 vote down

On Windows with the ActiveState distribution of Perl, use the ppm command.

link|flag
vote up 2 vote down

If you're on Ubuntu and you want to install the pre-packaged perl module (for example, geo::ipfree) try this:

    $ apt-cache search perl geo::ipfree
    libgeo-ipfree-perl - A look up country of ip address Perl module

    $ sudo apt-get install libgeo-ipfree-perl
link|flag
vote up 3 vote down

sudo perl -MCPAN -e 'install Foo'

link|flag

Your Answer

Get an OpenID
or

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