I have just installed a fresh copy of ubuntu 10.10. I installed perl 5.12.2 following brian d foy's recommended outline and then installed cpanminus by invoking curl -L http://cpanmin.us | perl5.12.2 - --sudo App::cpanminus.

Now, cpan5.12.2 works fine, but whenever I try to install a module using cpanm5.12.2 it fails finding it. e.g.:

$ sudo cpanm5.12.2 -v File::Copy::Recursive
You have make /usr/bin/make
You have LWP 5.837
You have /bin/tar: tar (GNU tar) 1.23
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by John Gilmore and Jay Fenlason.
You have /usr/bin/unzip
Searching File::Copy::Recursive on cpanmetadb ...
! Finding File::Copy::Recursive on cpanmetadb failed.
Searching File::Copy::Recursive on search.cpan.org ...
! Finding File::Copy::Recursive on search.cpan.org failed.
! Couldn't find module or a distribution File::Copy::Recursive
link|improve this question

Can you install with the normal cpan? – brian d foy Oct 17 '10 at 22:59
1  
Do you have any sort of proxy? Does perl -wle 'use LWP::Simple; getprint "http://cpanmetadb.appspot.com/v1.0/package/File::Copy::Recursive"' return a YAML file? – Schwern Oct 18 '10 at 1:34
@brian d foy: yes, as mentioned - cpan5.12.2 works fine. – David B Oct 18 '10 at 7:10
@Schwern I do use a proxy. Your command returns --- distfile: D/DM/DMUEY/File-Copy-Recursive-0.38.tar.gz version: 0.38. – David B Oct 18 '10 at 7:11
1  
That's what its supposed to return, but is perl the same as perl5.12.2? Try it again with perl5.12.2. I suspect the proxy is interfering. You have an HTTP_PROXY or http_proxy environment variable set? LWP should detect that and use it. – Schwern Oct 18 '10 at 13:31
show 1 more comment
feedback

1 Answer

You might try using perlbrew [1] to install a custom perl intrepreter. Then you can activate your 5.12.2 version, install cpanm (no sudo required) and install your modules as a normal user eg. "$ cpanm My::Module"

By using this method, you get custom cpanm binaries tied to each specific perlbrew version. You have to install cpan modules for every perlbrew version, but you don't end up with binaries like "cpanm5.12.2" but rather "cpanm". Perlbrew takes care of setting up a perl-version-specific path, which is rather handy IMHO.

[1] https://metacpan.org/module/App::perlbrew

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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