Solve the error "Can't locate ExtUtils/MakeMaker.pm in @INC"

Solve the error "Can't locate ExtUtils/MakeMaker.pm in @INC"

When installing mha4mysql, the steps are roughly: unzip, perl Makefile.PL, make, make install. When executing perl Makefile.PL, the following error is reported. Here is a brief solution:

# perl Makefile.PL
Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: inc /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at inc/Module/Install/Can.pm line 5.
BEGIN failed--compilation aborted at inc/Module/Install/Can.pm line 5.
Compilation failed in require at inc/Module/Install.pm line 307.
Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: inc /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at inc/Module/Install/Makefile.pm line 4.
BEGIN failed--compilation aborted at inc/Module/Install/Makefile.pm line 4.
Compilation failed in require at inc/Module/Install.pm line 307.
Can't locate ExtUtils/MM_Unix.pm in @INC (@INC contains: inc /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at inc/Module/Install/Metadata.pm line 322.

Install Dependencies

yum install perl-ExtUtils-MakeMaker

Continue to report errors

# perl Makefile.PL
*** Module::AutoInstall version 1.06
*** Checking for Perl dependencies...
Can't locate CPAN.pm in @INC (@INC contains: inc /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at inc/Module/AutoInstall.pm line 304.

yum -y install perl-CPAN

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Introduction to the difference between on and where conditions in MySQL left join operation
  • In-depth explanation of SQL statement execution (MySQL architecture overview -> query execution process -> SQL parsing order)
  • Detailed explanation of the index and storage structure of the MySQL InnoDB engine
  • PHP's mysqli_thread_id() function explained
  • PHP's mysqli_stmt_init() function explained
  • PHP's mysqli_stat() function explained
  • PHP's mysqli_ssl_set() function explained
  • PHP's mysqli_sqlstate() function explained
  • PHP's mysqli_set_charset() function explained
  • PHP's mysqli_select_db() function explained

<<:  Quick understanding and example application of Vuex state machine

>>:  A brief analysis of how to access Windows 10 host folders from CentOS 8 virtual machines

Recommend

Detailed explanation of box-sizing in CSS3 (content-box and border-box)

Box-sizing in CSS3 (content-box and border-box) T...

How to extend Vue Router links in Vue 3

Preface The <router-link> tag is a great to...

Quickly install MySQL5.7 compressed package on Windows

This article shares with you how to install the M...

CSS HACK for IE6/IE7/IE8/IE9/FF (summary)

Since I installed the official version of IE8.0, ...

Commonly used HTML format tags_Powernode Java Academy

1. Title HTML defines six <h> tags: <h1&...

Mysql5.7.14 Linux version password forgotten perfect solution

In the /etc/my.conf file, add the following line ...

Detailed example of MySQL (5.6 and below) parsing JSON

MySQL (5.6 and below) parses json #json parsing f...

Analyze the problem of pulling down the Oracle 11g image configuration in Docker

1. Pull the image docker pull registry.cn-hangzho...

Installation steps of mysql under linux

1. Download the mysql tar file: https://dev.mysql...

$nextTick explanation that you can understand at a glance

Table of contents 1. Functional description 2. Pa...

HTML table tag tutorial (8): background image attribute BACKGROUND

Set a background image for the table. You can use...

MySQL database SELECT query expression analysis

A large part of data management is searching, and...