0👍
✅
I actually solved my problem in a different way… I added this to my requirements.txt file:
-e git+https://github.com/coagulant/django-storages-py3.git@73920742505b0c86b2fbc30274ff8b111e9b6f48#egg=django_storages-origin-py3
and now it’s working! With a different library, but still…
1👍
I ran into this issue as well. I was able to resolve by starting a fresh environment and reinstalling the package. I believe I had two packages fighting over the ‘storages’ name.
This was with Python 3.4, Django 1.7.1, and django-storages-redux 1.2.3.
- Errors with django urls
- Why is a auto_now=True field designed to not update when using QuerySet.update()?
- How to get chart's data and labels
- Python django self variable across the class and function
0👍
Are you trying to freeze/ is your script frozen? Such as with cx_Freeze. Cx_freeze and as far as I know other freezing programs don’t play nicely with .egg files. You may need to manually put the 3rd party api’s folder in the /python34/Lib/site-packages.
Source:stackexchange.com