我是新手log4p
,想用它来登录我的代码。我收到如下错误:
在 @INC 中找不到 Log/Log4perl.pm
我理解是因为缺少库。现在,我在哪里以及如何在我的 UNIX 环境中安装这个库?
我尝试安装:
yum install perl-Log-Log4perl-1.30-1.el6.noarch.rpm
这也失败了。我不是在正确的轨道上吗?有人可以给我一个快速启动链接,它还告诉我如何安装这个包以及从哪里安装?
为 perl 安装软件包的典型方法是使用cpan
或它的变体(cpanm、cpanp 等)。如果它是由您的发行版打包的,那会更容易/更快,但如果不是,您仍然可以通过 cpan 进行打包。
cpan Log::Log4perl
或在 DOS 命令提示符下输入
> cpan
> install Log::Log4perl
您可以在search.cpan.org上查找所需的软件包及其确切的软件包名称
1) Go to http://search.cpan.org/~mschilli/Log-Log4perl-1.46/
2) Download tar.gz archive
3) tar zxfv archive
4) go to the archive's folder
5) run "perl Makefile.PL"
6) run "make"
7) run "make test"
8) run "make install"
就这样。