在Mac OS 10.10.5上安装poplib

时间:2016-06-15 18:50:42

标签: macos python-3.5

我尝试在我的Mac上安装poplib,我尝试使用Conda,pip和Homebrew,但我无法安装此模块。 您有任何建议我可以尝试或替代模块吗? 我使用与Anaconda一起安装的Python 3.5.1。 谢谢!

1 个答案:

答案 0 :(得分:0)

我使用impalib解决了,并用smtplib解决了一个错误,但现在我更加卡住了...... 我无法使用smtp服务器进行身份验证,无法连接到imap服务器。 这是我的代码:

    class EmailController:
      def __init__(self):
        # Check for connection, connect to servers.
        internetConnection = requests.get('http://www.google.com')
        while not internetConnection:
          internetConnection = requests.get('http://www.google.com')

        self.addrFrom = 'My address'

        print('connecting smtp')
        self.smtpServer = smtplib.SMTP('smtp-mail.outlook.com', 587)
        print('starting tls')
        self.smtpServer.starttls()
        print('authenticating')
        self.smtpServer.login(self.addrFrom, 'password') #Here it gets stuck

        print('connecting imap')
        self.imapServer = imaplib.IMAP4('imap-mail.outlook.com', 993) #Here is gets stuck too
        print('starting tls')
        self.imapServer.starttls()

可能是服务器还是我做错了什么?你在imaplib上启动SSL加密吗?