久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

centos7 python3.7 ssl_Python3.7安裝(解決ssl問(wèn)題)

 LibraryPKU 2021-12-26

注:本博文主要為轉(zhuǎn)載后根據(jù)本人情況再加工

1 問(wèn)題:

python3.7.2安裝遇到如下ssl問(wèn)題

>>> import ssl

Traceback (most recent call last):

File "", line 1, in

File "/usr/local/lib/python3.7/ssl.py", line 98, in

import _ssl # if we can't import it, let the error propagate

ModuleNotFoundError: No module named '_ssl'

2 解決辦法

2.1安裝依賴(lài)

yum groupinstall development

2.2 安裝libressl代替openssl-devel

2.2.1 原因

由于系統(tǒng)的openssl是1.0.1的版本,,對(duì)于python3.7太老了,,需要更新為openssl1.0.2或者libressl2.64(不含)以后的版本,,所以這里從libressl官網(wǎng)下載libressl源碼,,編譯生成庫(kù)文件代替系統(tǒng)的openssl1.0.1

2.2.2 安裝libressl

下載libressl-2.8.0

./config –prefix=/usr/local/libressl

make

make intall

mv /usr/bin/openssl /usr/bin/openssl.bak

mv /usr/include/openssl /usr/include/openssl.bak

ln -s /usr/local/libressl/bin/openssl /usr/bin/openssl

ln -s /usr/local/libressl/include/openssl /usr/include/openssl

2.2.3 加載lib

cd /etc/ld.so.conf.d

新建文件

vim libressl-2.8.0.conf

#將以下行加入文件,,并保存

/usr/local/libressl/lib

ldconfig -v #重新加載庫(kù)文件

2.3安裝python3.7

從官網(wǎng)下載python3.7的源碼,

解壓后進(jìn)入Python-3.7.0

編譯前需要設(shè)置環(huán)境變量(重要)

export LDFLAGS="-L/usr/local/libressl/lib"

export CPPFLAGS="-I/usr/local/libressl/include"

export PKG_CONFIG_PATH="/usr/local/libressl/lib/pkgconfig"

./configure –prefix=/usr/local/python3 –enable-shared CFLAGS=-fPIC

運(yùn)行后會(huì)出現(xiàn)一堆信息:

注意最后的ssl檢查,,如下圖所示:

2.4 處理異常

運(yùn)行python3.7命令遇到:libpython3.7m.so.1.0: cannot open shared object file: No such file or d

echo /usr/local/python3.7/lib > /etc/ld.so.conf.d/python3.7.conf

ldconfig -v

2.4 驗(yàn)證

linux下gunicorn+flask項(xiàng)目的部署

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶(hù)發(fā)布,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多