I get the reoccuring AttributeError
when trying to import the python-pptx module:
import pptx
AttributeError Traceback (most recent call last)
...
----> 8 import pptx.exc as exceptions
...
AttributeError: module 'pptx' has no attribute 'exc'
I am using the JupyterNotebook and have already reinstalled python-pptx using pip uninstall python-pptx
pip install python-pptx
. On stackoverflow, I found a related post here.
Even as I understand that it might not be loading the right module, I do not know how to proceed further in order to resolve the issue. Help is very much appreciated.