No Module Named 'storages'

[Solved] No Module Named 'storages' | Shell - Code Explorer | yomemimo.com
Question : No module named 'storages'

Answered by : bad-bear-y3a524f8gm3t

pip install django-storages

Source : https://django-storages.readthedocs.io/en/latest/ | Last Update : Wed, 20 Jan 21

Question : no module named 'storages'

Answered by : trained-tuna

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'

Source : | Last Update : Wed, 24 Nov 21

Answers related to No module named 'storages'

Code Explorer Popular Question For Shell