Python添加ssl模块

又遇到一个坑,Django需要_ssl模块,默认安装的Python没有,重新编译一下,教程很多,我简单记录一下。

进入Python的源码目录

1
2
cd Python-3.7.2/Modules
vim Setup.dist

去掉下面几行前面的注释:

1
2
3
4
5
# Socket module helper for SSL support; you must comment out the other
# socket line above, and possibly edit the SSL variable:
#SSL=/usr/local/ssl#_ssl _ssl.c \
# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \
# -L$(SSL)/lib -lssl -lcrypto

1
2
3
./configure
make
sudo make install

这样就完成了。

参考资料:

https://www.cnblogs.com/stragon/p/5884205.html


Python添加ssl模块
https://blog.yrpang.com/posts/5070/
作者
yrPang
发布于
2019年1月24日
许可协议