TECHIES WORLD

For Techs.... Techniques.... Technologies....

AWSBashLinuxPython

AWS cli error: ImportError: cannot import name 'docevents' from 'botocore.docs.bcdoc'

ImportError: cannot import name 'docevents' from 'botocore.docs.bcdoc'

The reason for this error is the version conflict of Python botocore module and awscli.

We can resolve this error by upgrading the awscli package.

#pip install --upgrade awscli

That's all…