"Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:40:09Z http://stackoverflow.com/feeds/question/65865 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl 9 "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? dreeves 2008-09-15T19:16:07Z 2009-01-02T02:00:31Z <p>I get this error:</p> <pre> Can't locate Foo.pm in @INC </pre> <p>Is there an easier way to install it than downloading, untarring, making, etc?</p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/65876#65876 3 Answer by dreeves for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? dreeves 2008-09-15T19:17:11Z 2008-09-15T19:17:11Z <p><code>sudo perl -MCPAN -e 'install Foo'</code></p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/65883#65883 23 Answer by bene for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? bene 2008-09-15T19:17:52Z 2008-10-09T21:46:32Z <p><strong>On Unix</strong>:</p> <p>usually you start <em>cpan</em> in your shell:</p> <p><code># cpan</code></p> <p>and type</p> <p><code>install Chocolate::Belgian</code></p> <p>or in short form:</p> <p><code>cpan Chocolate::Belgian</code></p> <p><strong>On Windows</strong>:</p> <blockquote> <p>If you're using ActivePerl on Windows, the <a href="http://docs.activestate.com/activeperl/5.10/faq/ActivePerl-faq2.html#pkg_operations" rel="nofollow">PPM (Perl Package Manager)</a> has much of the same functionality as CPAN.pm.</p> </blockquote> <p>Example:</p> <p><code># ppm</code><br/> <code>ppm&gt; search net-smtp</code><br/> <code>ppm&gt; install Net-SMTP-Multipart</code></p> <p><strong>see <a href="http://www.cpan.org/misc/cpan-faq.html#How_install_Perl_modules" rel="nofollow">How do I install Perl modules?</a> in the CPAN FAQ</strong></p> <p>Many distributions ship a lot of perl modules as packages.</p> <ul> <li>Gentoo: category <a href="http://www.gentoo-portage.com/dev-perl" rel="nofollow"><strong>dev-perl</strong></a></li> <li>Debian: <code>apt-cache search 'perl$'</code></li> </ul> <p>You should <em>always</em> prefer them as you benefit from automatic (security) <strong>updates</strong> and the ease of <strong>removal</strong>. This can be pretty tricky with the <em>cpan</em> tool itself.</p> <p>For Gentoo there's a nice tool called <strong><a href="http://www.gentoo-portage.com/dev-perl" rel="nofollow">g-cpan</a></strong> which builds/installs the module from CPAN and creates a Gentoo package (<a href="http://www.gentoo.org/proj/en/perl/g-cpan.xml" rel="nofollow">ebuild</a>) for you.</p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/65911#65911 2 Answer by Otto for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? Otto 2008-09-15T19:21:23Z 2008-09-16T15:21:21Z <p>If you're on Ubuntu and you want to install the pre-packaged perl module (for example, geo::ipfree) try this:</p> <pre> $ 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 </pre> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/65945#65945 0 Answer by PW for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? PW 2008-09-15T19:26:21Z 2008-10-08T07:27:00Z <p>On Windows with the ActiveState distribution of Perl, use the <a href="http://docs.activestate.com/activeperl/5.10/faq/ActivePerl-faq2.html#pkg_operations" rel="nofollow">ppm</a> command.</p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/65960#65960 0 Answer by JWHEAT for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? JWHEAT 2008-09-15T19:27:42Z 2008-09-15T19:27:42Z <p>2 ways that I know of :</p> <p><strong>USING PPM :</strong></p> <p>With <strong>Windows</strong> (ActivePerl) I've used ppm</p> <p>from the command line type ppm. At the ppm prompt ... </p> <pre><code>ppm&gt; install foo </code></pre> <p>or </p> <pre><code>ppm&gt; search foo </code></pre> <p>to get a list of foo modules available. Type <strong>help</strong> for all the commands</p> <p><strong>USING CPAN :</strong></p> <p>you can also use CPAN like this (<strong>*nix systems</strong>) :</p> <pre><code>perl -MCPAN -e 'shell' </code></pre> <p>gets you a prompt</p> <pre><code>cpan&gt; </code></pre> <p>at the prompt ...</p> <pre><code>cpan&gt; install foo (again to install the foo module) </code></pre> <p>type h to get a list of commands for cpan</p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/65963#65963 0 Answer by Pat for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? Pat 2008-09-15T19:28:01Z 2008-09-15T19:28:01Z <p>The standard way which should work on Linux, Unix , Strawberry Perl (for windows), etc... is</p> <pre><code>sudo perl -MCPAN -e 'install Foo' </code></pre> <p>Or you can start a shell via</p> <pre><code>sudo perl -MCPAN -e 'shell' </code></pre> <p>then once the cpan shell has started you type</p> <pre><code>install Foo </code></pre> <p>or simply type help for a list of commands.</p> <p>The first time you run any of these commands you might be required to configure CPAN by answering a few questions.</p> <p>Most perl distributions provide a cpan shell command so you can start it with <strong>cpan</strong> instead of <strong>perl -MCPAN -e 'shell'</strong></p> <p>If you are using Active State perl on win32 the easiest way is to install modules using Perl Package Manager provided with the distribution</p> <p>You do this you type:</p> <pre><code>ppm install Foo </code></pre> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/66430#66430 11 Answer by Dave Rolsky for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? Dave Rolsky 2008-09-15T20:08:08Z 2008-11-08T16:59:27Z <p>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 <strong>just</strong> for installing. This is much safer, since it means that tests don't run as root.</p> <p>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.</p> <p>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.</p> <p>Also, I'd strongly suggest that Windows users investigate <a href="http://strawberryperl.com" rel="nofollow">strawberry Perl</a>. 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.</p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/67720#67720 6 Answer by brian d foy for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? brian d foy 2008-09-15T22:47:11Z 2008-09-15T22:47:11Z <p>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. </p> <p><code> $prompt> cpan Foo::Bar </codE></p> <p>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).</p> <p>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):</p> <p><code> -a Creates the CPAN.pm autobundle with CPAN::Shell->autobundle.</p> <p>-A module [ module ... ] Shows the primary maintainers for the specified modules</p> <p>-C module [ module ... ] Show the Changes files for the specified modules</p> <p>-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.</p> <p>-L author [ author ... ] List the modules by the specified authors.</p> <p>-h Prints a help message.</p> <p>-O Show the out-of-date modules.</p> <p>-r Recompiles dynamically loaded modules with CPAN::Shell->recompile.</p> <p>-v Print the script version and CPAN.pm version. </code></p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/69838#69838 4 Answer by Corion for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? Corion 2008-09-16T06:36:04Z 2008-09-16T09:15:00Z <p>Also see <a href="http://perlmonks.org/?node=693828" rel="nofollow">Yes, even you can use CPAN</a>. It shows how you can use CPAN without having root or sudo access.</p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/73546#73546 1 Answer by davorg for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? davorg 2008-09-16T15:25:57Z 2008-09-16T15:25:57Z <p>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.</p> <p>And, of course, it's available on CPAN for people still using older versions of Perl. Why not try:</p> <pre><code>$ cpan CPANPLUS </code></pre> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/75985#75985 0 Answer by mikegrb for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? mikegrb 2008-09-16T19:25:35Z 2008-09-16T19:25:35Z <p>Otto made a <a href="http://stackoverflow.com/questions/65865/cant-locate-foopm-in-inc-how-to-install-a-missing-perl-module#65911">good suggestion</a>. 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.</p> <pre><code>$ sudo apt-get install dh-make-perl build-essential apt-file $ sudo apt-file update </code></pre> <p>Then whenever you have a random module you wish to install:</p> <pre><code>$ cd ~/some/path $ dh-make-perl --build --cpan Some::Random::Module $ sudo dpkg -i libsome-random-module-perl-0.01-1_i386.deb </code></pre> <p>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.</p> http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/309989#309989 0 Answer by aardvark for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module? aardvark 2008-11-21T19:59:27Z 2008-11-21T19:59:27Z <p>On Fedora you can use</p> <pre><code># yum install foo </code></pre> <p>as long as Fedora has an existing package for the module.</p>