Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
import imaplib M=imaplib.IMAP4_SSL('imap.gmail.com', 993)
在我的电脑上运行时,它工作正常,一切正常,但在服务器上它返回:'module' object has no attribute 'IMAP4_SSL'
'module' object has no attribute 'IMAP4_SSL'
那么这个模块显然需要这个属性。任何线索?
IMAP4_SSL 仅在 Python 的ssl 模块可用时才存在(您可以使用 进行测试import ssl)。尝试升级服务器的 python 版本,和/或安装 ssl 模块。
import ssl