[Django]-Django-storages S3 Backend Won't Load

4👍

Looks like setup.py doesn’t install S3 module in PYTHONPATH.
This can be easily fixed by downloading S3 module anywhere in your PYTHONPATH (type import sys;print sys.path to find these folders):

sudo curl -O https://bitbucket.org/dziegler/django-storages/raw/9a3017a4f577a7d740451c1a6dde9079c69f09b6/S3.py 

That helped me

Leave a comment