- Can't locate LWP/Simple.pm in @INC (@INC contains: /etc/perl /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux /usr/lib64/perl5/vendor_perl/5.8.8 /usr/lib64/perl5/vendor_perl /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux /usr/lib64/perl5/site_perl/5.8.8 /usr/lib64/perl5/site_perl /usr/lib64/perl5/5.8.8/x86_64-linux /usr/lib64/perl5/5.8.8 /usr/local/lib/site_perl .) at ./weather_log.plx line 3.
- BEGIN failed--compilation aborted at ./weather_log.plx line 3.
-
Execute the following from the command line:
perl -MLWP::Simple -e 1If you don't get any output from the above command then the module is installed; if you get an error, it's not installed
-
to install use
perl -MCPAN -e'install "LWP::Simple"'
When perl encounters use My::Module it goes over the elements of the built-in @INC module that contains directory names. In each directory it check if there is a subdirectory called "My" and if in that subdirectory there is a file called "Module.pm".
check where LWP::Simple module is installed on your system and type below line just above the use LWP::Simple statement of your code.
use lib '/usr/local/module';
use LWP::Simple;
本文解决了一个关于Perl中LWP::Simple模块缺失的问题,提供了检查模块是否已安装的方法及如何使用CPAN进行安装。
4万+

被折叠的 条评论
为什么被折叠?



