plenvでperlを利用しています(近頃はあまりいじっていない・・・)
5.28.0がリリースされたということなので、インストールしてみようかなと思い久々に実施したところ・・
1 2 3 4 5 6 7 8 |
$ plenv install 5.28.0 Installing 5.28.0 as 5.28.0 /usr/bin/perl -- /.plenv/plugins/perl-build/bin/perl-build --symlink-devel-executables --build-dir .plenv/build/1530271397.32536/ --tarball-dir /.plenv/cache/ -Dusedevel 5.28.0 .plenv/versions/5.28.0 WARN: [cpan_perl_releases] not found the tarball for perl-5.28.0 WARN: [perl_releases_page] This page is 3 or more days old. ignore WARN: [search_cpan_org] not found the tarball for perl-5.28.0 ERROR: Cannot find the tarball for perl-5.28.0 ABORT |
とplenvでエラーが!
最初何故かさっぱりわかりませんでした。
しかし、古いバージョンは普通にインストールできました。
あたしいperlの所在が分からなくなっているようなのはわかって、plenvをアップデートしてもダメ、CPAN::Perl::Releasesをアップデートしてもダメ
インストールしたときの記録を見直してみると、”perl-build”がで、さっそくアップデート
1 2 3 |
$ cd ~/.plenv/plugins/perl-build $git pull |
そうすると、無事インストールできました。
意外とはまりました
コメント