Can’t locate LWP/Simple.pm・・・とエラーが出たときにインストールが必要なパッケージ

2016年2月19日

perlのスクリプトを実行しようとして、以下のようなエラーが出た場合の対処法です。

Can’t locate LWP/Simple.pm in @INC (you may need to install the LWP::Simple module) (@INC contains: /etc/perl /usr/local/lib/arm-linux-gnueabihf/perl/5.20.2 /usr/local/share/perl/5.20.2 /usr/lib/arm-linux-gnueabihf/perl5/5.20 /usr/share/perl5 /usr/lib/arm-linux-gnueabihf/perl/5.20 /usr/share/perl/5.20 /usr/local/lib/site_perl .)

www関連のライブラリのパッケージが足りないので、debian系の場合はapt-get で libwww-perl をインストールしましょう。(RHEL系はyumで。)

インストールが終わったら、もう一度スクリプトを実行してみましょう。