ubuntu16 安裝 python3.10 遇到 openssl 版本過低問題以及解決方案

ponponon發表於2022-05-24

通過原始碼編譯 python3.10 的時候,遇到了一個 ssl 模組的警告,但是我忽略了,沒有在意

結果使用 pip 安裝第三方包的時候,連線不上網路:

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")

想匯入 ssl 包也失敗了

python3.10 需要的最低 openssl 的版本是 1.1.1

ubuntu16 自帶的 1.0.x

我本來想通過 sudo apt install libssl-dev openssl

相關文章