Reputation: 455
I am working with Amazon S3 to serve static files and also using heroku as a Paas. I following this tutorial. I did a,
python manage.py collectstatic
locally and it worked just fine but when i do a,
heroku run python manage.py collectstatic --noinput
i get the error,
django.core.exceptions.ImproperlyConfigured: Error importing storage module storages.backends.s3boto: "No module named storages.backends.s3boto"
What am i doing wrong here.
Upvotes: 2
Views: 7911
Reputation: 4271
the django-storages
is missing.
do a new pip freeze > requirements.txt
Upvotes: 10