centos7 python3.7 ssl错误解决方法

python2 import ssl正常,但是3错误

正常解决步骤,重要第二句

cd Python-3.6.2(自己的之前便已安装的包围住)
./configure --with-ssl
make
sudo make install

如果还有问题可以参考下面

1、自己python安装包下设置设置
vim Python-3.**/Modules/Setup.dist
把这四项注释打开

_socket socketmodule.c timemodule.c
SSL=/usr/local/ssl
_ssl _ssl.c /
-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl 

然后再回到原Python安装包文件下
./configure --with-ssl
make
sudo make install

你可能感兴趣的:(知识点)