+ perl version: This is perl 5, version 16, subversion 3 (v5.16.3) built for x86_64-linux-thread-multi Can't locate ExtUtils/Embed.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .). BEGIN failed--compilation aborted. ./configure: error: perl module ExtUtils::Embed is required
时间: 2023-08-11 09:08:08 浏览: 469
It seems that the ExtUtils::Embed Perl module is missing or not installed on your system. The module is required for the configuration process you are trying to perform.
To resolve this issue, you can install the ExtUtils::Embed module using the following command:
```
cpan ExtUtils::Embed
```
This command will download and install the module from the Comprehensive Perl Archive Network (CPAN).
阅读全文