I'm trying to run a perl script and I get this error:
Can't locate loadable object for module Data::UUID in @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.10.0/i386-linux-thread-multi /usr/local/lib/perl5/site_perl/5.10.0 /usr/lib/perl5/vendor_perl/5.10.0/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.10.0 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.10.0/i386-linux-thread-multi /usr/开发者_如何转开发lib/perl5/5.10.0 /usr/lib/perl5/site_perl .) at /var/www/cgi-bin/tmp.pl line 19
Compilation failed in require at /var/www/cgi-bin/tmp.pl line 19.
I installed "Data::UUID" manually (without Makefile.pl) and I'm not sure about what I'm doing wrong.
Can anyone help?
Can't locate loadable object for module Data::UUID
This means it's missing an object file. You should use the Makefile.PL
to install this module, it's not "pure" perl, it has a native code part.
精彩评论