Answers for "no module named 'storages' django"

1

No module named 'storages'

pip install django-storages
Posted by: Guest on January-13-2021
1

no module named 'storages'

pip install django-storages
-- or --
check your settings.py
INSTALLED_APPS = ('storages',)
-- or --
make sure you dont have a python version that is too NEW (revert to python 3.7)
-- or --
check your STATICFILES_STORAGE variable this should be set as:
STATICFILES_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
Posted by: Guest on November-17-2021

Code answers related to "no module named 'storages' django"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language