Unable to import Python's email module at all Unable to import Python's email module at all python python

Unable to import Python's email module at all


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 <module>    import smtplib  File "C:\Python27\lib\smtplib.py", line 46, in <module>    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.


I just came across this error and wanted to share my solution. In my case, I had a file named email.py in directory. This created a name conflict between Python's email.py and my file. When smtplib tried to import email.utils it looked and my file and didn't find anything. After I renamed my copy of email.py into myemail.py everything worked like a charm.


I also came across this error. In addition to renaming the email.py to something else, you must also remove the email.pyc (notice the C) file. After that, all is well. Thanks all!