这个问题是安装python时出错,没有正常的安装ssl模块
可以使用python3 -c "import ssl; print(ssl.OPENSSL_VERSION)"
检查
解决方案:./configure --prefix=/usr/local/python3 --with-openssl=<openssl路径>
openssl路径一般为/usr/local/openssl
./configure --prefix=/usr/local/python3 --with-openssl=/usr/local/openssl
评论