如何在python 2.7.6中导入_ssl?

2024-01-29

我的http服务器基于带有Python 2.7.6的BaseHTTPServer。现在我希望它支持ssl传输,即所谓的https。

我已经安装了 pyOpenSSL 并重新编译了带有 ssl 支持的 python 源代码。当我尝试时它确实有效import ssl在我的 python 解释器中,但是当我在服务器上运行代码时它不起作用。错误日志是这样的:

import _ssl # 如果我们无法导入它,让错误传播

看起来很奇怪,不是吗?我的操作系统是 Debian Linux 发行版。我已经尝试了几天在互联网上找到的各种方法,有人可以帮助我摆脱这个麻烦吗?


我尝试直接在服务器代码中“导入_ssl”,但它提醒我这一点:

>>>callstack
Traceback (most recent call last):
  File "./script/main.py", line 85, in process
    net_flag = net_api_process()
  File "./script/core/netbase/interface.py", line 96, in net_api_process
    flag1 = network.instance().process()
  File "./script/core/netbase/network.py", line 271, in process
    if network.process(max_events):
  File "./script/core/netbase/network.py", line 75, in on_incomin_stream
    self.on_package(buf)
  File "./script/core/netbase/network.py", line 78, in on_package
    self.f_on_package(self, buf)
  File "./script/client/behavior.py", line 68, in on_package
    handler.OnPackage(pack, cmd, conn.m_uid, conn)
  File "./script/client/handler.py", line 288, in OnPackage
    func(uid, conn, pack)
  File "./script/logic/user_info/modify.py", line 365, in OnModBaseInfo
    ModBaseInfo(uid, conn, seq, json_str)
  File "./script/logic/user_info/modify.py", line 385, in ModBaseInfo
    modify_pub.Start()
  File "./script/logic/user_info/modify.py", line 253, in Start
    import _ssl
ImportError: No module named _ssl

我终于解决了这个问题! _ssl 模块是 python 的内置模块,但它需要在您的系统上安装 openssl。

先切换到root用户! 1.安装openssl和libssl-dev。 如果在 debian 操作系统上

apt-get install openssl
apt-get install libssl-dev

2.重新编译python

cd Python2.7.6
./configure
make && make install

但实际上,我是这样解决问题的! 1.安装openssl 我从网上下载了一个包,是openssl-1.0.2d.tar.gz

tar zxvf openssl-1.0.2d.tar.gz
cd openssl-1.0.2d
./config -fPIC   //configuration:create path independent libssl.a
make && make install

2.重新编译python2.7,并使其支持ssl模块

tar xvf Python-2.7.6.tar
cd Python-2.7.6
vim Modules/Setup.dist 

找到以下行并取消注释。(使用 /ssl+Enter 在 vi​​m 中快速找到这些行)

# Socket module helper for socket(2)
_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

然后config和make,make install

./configure --enable-shared //--enable-shared option means to generate dynamic library libpython2.7.so.1.0
make && make install

我们的项目依赖于libpython2.7.so.1.0。现在我可以使用新的 libpython2.7.so.1.0 在 python 脚本或 python 解释器中成功“导入 ssl”或“导入 _ssl”。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何在python 2.7.6中导入_ssl? 的相关文章

随机推荐