Error "Could not load Boto's S3 bindings."

boto, django, django-storage

Solution

From looking at the source code, it appears you need to have the python-boto library installed. This is also mentioned in the documentation you link to.

Problem

I have followed the very terse guide provided for django-storages, transitioned from local file storage, and have come up against this exception: Could not load Boto's S3 bindings. settings.py ``` DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' AWS_ACCESS_KEY_ID = "xxxxxx" AWS_SECRET_ACCESS_KEY = "xxxxxxxxx" AWS_STORAGE_BUCKET_NAME = "images" ``` models.py ``` class CameraImage(models.Model): ... image = models.ImageField(upload_to='images')#get_image_path) ``` What does that exception mean? How do I fix it?

Original source

Related problems