I get this error:
Can't locate Foo.pm in @INC
Is there an easier way to install it than downloading, untarring, making, etc?
|
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? |
|||
|
|
|
On Unix: usually you start cpan in your shell:
and type
or in short form:
On Windows:
Example:
see How do I install Perl modules? in the CPAN FAQ Many distributions ship a lot of perl modules as packages.
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. |
||||
|
|
|
On Fedora you can use
as long as Fedora has an existing package for the module. |
|||
|
|
|
|
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.
Then whenever you have a random module you wish to install:
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. |
||
|
|
|
|
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:
|
||
|
|
|
Also see Yes, even you can use CPAN. It shows how you can use CPAN without having root or sudo access. |
|||
|
|
|
|
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.
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 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. |
||
|
|
|
|
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. |
|||
|
|
|
|
The standard way which should work on Linux, Unix , Strawberry Perl (for windows), etc... is
Or you can start a shell via
then once the cpan shell has started you type
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:
|
||
|
|
|
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 ...
or
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) :
gets you a prompt
at the prompt ...
type h to get a list of commands for cpan |
||||
|
|
|
On Windows with the ActiveState distribution of Perl, use the ppm command. |
|||
|
|
|
|
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
|
|||
|
|
|
|
|
||
|
|