ImportError: No module named email.mime.multipart



when packaging python application using boto via pyinstaller, it happens error message when execute application.

ImportError: No module named email.mime.multipart


solution:

When install boto, modify code "boto/utils.py" as follow:
 insert this at top of code.

import email.mime.text
from email.mime.multipart import MIMEMultipart

댓글