Search code examples
pythonpipboto3modulenotfounderrorbotocore

E ModuleNotFoundError: No module named 'botocore.compress'


I had both boto3 and botocore installed in my conda venv, but was getting this error during compilation:

E ModuleNotFoundError: No module named 'botocore.compress'

Solution

  • pip install boto3 --upgrade
    

    Source of the answer to a similar problem