2012年10月1日月曜日

PerlとCPANとYAML

最近のcpanはyamlを必要としているのでcpanを使う前にyamlのインストールとcpanの初期設定が必要になる場合はあります

Warning (usually harmless): 'YAML' not installed, will not store persistent state

という警告がcpanでinstall実行時に出る場合は以下の設定をやってみましょう

  1. rpm -Uvh http://fr2.rpmfind.net/linux/dag/redhat/el5/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
  2. yum -y install libyaml-devel
  3. yum -y install *YAML*
  4. perl -MCPAN -e shell
  5. cpan> upgrade
  6. cpan> install YAML


0 件のコメント:

コメントを投稿