perlbrewインストール(new)

以前の方法だと、うまくインストールできなくなったようなので、以下の方法でインストール。

su - hogehoge
curl -kL http://install.perlbrew.pl | bash
echo 'source /home/hogehoge/perl5/perlbrew/etc/bashrc' >> ~/.bashrc
source ~/.bashrc

これで、perlbrewコマンドが使えるようになるので、

// インストールできるperlの一覧
perlbrew available

// perlのインストール
perlbrew install perl-5.17.7

// インストールしたperlを使う
perlbrew switch perl-5.17.7

ついでなので、cpanmもインストール

perlbrew install-cpanm

ま、公式見る方が話が早いですが・・。