When import docx in python3.3 I have error ImportError: No module named ‘exceptions’

If you are using python 3x don’t do pip install docx instead go for

pip install python-docx 

It is compatible with python 3.x

Official Documentation available here: https://pypi.org/project/python-docx/

Leave a Comment