在安装openssl-devel的步骤中,运行config时报错:
Operating system: x86_64-whatever-linux2 You need Perl 5
需要安装Perl5
//下载
wget https://www.cpan.org/src/5.0/perl-5.28.0.tar.gz 或者 yum list perl查看可安装的perl包 通过yum install perl-xxx 安装
//解压
tar -xzf perl-5.28.0.tar.gz
cd perl-5.28.0
//运行配置文件
./Configure -des -Dprefix=$HOME/localperl
//编译
make
//编译测试
make test
//编译按照
make install
在执行Configure 命令时如果出现
cc: command not found
需要安装gcc
https://www.cnblogs.com/ycy1518/p/13097457.html