I am trying to use S3 for static files and I am getting this error.
django.core.files.storage.handler.InvalidStorageError: Could not find backend 'storages.backends.s3.S3Storage': No module named 'storages.backends'
My settings.py has storages set this way.
STORAGES = {
"staticfiles": {"BACKEND": "storages.backends.s3.S3Storage"},
}
I have ‘storages’ in my list of apps, and am running the following versions:
Python 3.12.3
Django 5.1
boto3==1.34.158
django-storages==1.14.4
any ideas?