Unable to import Python's email module at all

后端 未结 5 1712
故里飘歌
故里飘歌 2020-12-03 00:55

I can\'t seem to import the email module at all. Every time I do it I get an error. I\'ve tried uninstalling Python and reinstalling, but the email module just refuses to wo

5条回答
  •  旧时难觅i
    2020-12-03 01:15

    It looks like you have a file named email.py. Don't use file names that have the same name as Python standard library modules. Generally, your working directory comes earlier on the Python search path for importing modules so files in your working directory will override modules with the same name in the standard library.

    The clue: note the path names in the traceback

      File "email.py", line 1, in 
        import smtplib
      File "C:\Python27\lib\smtplib.py", line 46, in 
        import email.utils
    

    By the way, this is a very common error. The excellent tutorial in the Python standard documentation set talks about it here.

提交回复
热议问题