前言
正文
记录一下搭建环境是遇到的 python 里出现的 缺少 _ssl 模块的问题。
当我们直接配置的时候,会缺少 _ssl
,所以我们在使用 configure
配置前,先编辑 ${python_install_dirctory}/Module/Setup
文件,如下所示:
将第210、215、216、217 行的注释去了,去了之后,再执行配置安装即可。
_socket socketmodule.c timemodule.c # 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
Linux 的学习是使用基本上都得面临枯燥的黑窗口,慢慢来吧。