Django のストレージ バックエンドを使用しようとしています (BotoS3 用)
settings.py:
INSTALLED_APPS = (
...
'storages',
...
)
http://django-storages.readthedocs.org/en/latest/index.htmlに示されているように。
そして、requirements.txt:
django-storages==1.1.8
しかし、エラーが発生しています:
django.core.exceptions.ImproperlyConfigured: ImportError storages: No module named storages
私は何を間違っていますか?