AttributeError: 'module' object has no attribute 'SMTP_SSL'

在Python虚拟环境中使用smtplib.SMTP_SSL发送邮件时遇到AttributeError,发现非venv环境下正常。经排查,问题出在缺少ssl库。通过导入ssl模块并复制ssl库到相应目录,成功解决该错误,现在可以正常调用smtplib.SMTP_SSL了。
摘要由CSDN通过智能技术生成

  在使用python virtual environment的smtplib的时候,发现smtplib.SMTP_SSL('smtp.163.com', 465)报错:

>>> import smtplib
>>> smtplib.SMTP_SSL('smtp.163.com', 465)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'SMTP_SSL'

但是在非venv下没问题,参考了:https://exp.newsmth.net/topic/article/e35eea6efe28f9c03ddae30f6a2fba52,发现可能是import ssl出错,于是import ssl,报错:

>>> import ssl
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python2.7/ssl.py", line 61, in <module>
    import _ssl             # if we can't import it, let the error propagate
ImportError: /lib/x86_64-
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值