CentOS7 安装openssl11

文章目录

  • 问题描述
  • 安装方法

问题描述

安装Python 3.8的过程中,提示如下信息。

Could not build the ssl module!
Python requires an OpenSSL 1.0.2 or 1.1 compatible libssl with X509_VERIFY_PARAM_set1_host().
LibreSSL 2.6.4 and earlier do not provide the necessary APIs, https://github.com/libressl-portable/portable/issues/381

安装方法

网上很多是源码安装的,稍微复杂。


//1. 可能需要先执行
yum update -y
//2. 然后
yum install -y epel-release
//3. 安装
yum install -y openssl-devel openssl11 openssl11-devel

你可能感兴趣的:(Linux,linux)