Python添加ssl模块
又遇到一个坑,Django需要_ssl
模块,默认安装的Python没有,重新编译一下,教程很多,我简单记录一下。
进入Python的源码目录
1 |
|
去掉下面几行前面的注释: 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 |
|
这样就完成了。
参考资料:
https://www.cnblogs.com/stragon/p/5884205.html
Python添加ssl模块
https://blog.yrpang.com/posts/5070/