我已经按照django-storages提供的非常简洁的指南,从本地文件存储过渡,并且遇到了这个例外:
无法加载Boto的S3绑定。
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)
该例外是什么意思?我该如何解决?
答案 0 :(得分:33)
从looking at the source code开始,您似乎需要安装python-boto库。您在链接到的文档中也提到了这一点。
答案 1 :(得分:13)
现在正在进行更新" pip install boto"