django-filer - AttributeError: 'Manager' object has no attribute '_inherited'
django-filer - AttributeError: 'Manager' object has no attribute '_inherited'
我正在尝试安装 django-filer。但是当我 运行 manage.py migrate
我得到 AttributeError: 'Manager' object has no attribute '_inherited'。我不知道那是什么意思。 (我用 Heroku 入门模板开始这个项目 https://github.com/heroku/heroku-django-template)
我最初以为我可能忘记安装 JPEG 和 ZLIB,但据我了解,它们是自 Pillow 3.0 以来的默认设置。
$ pip freeze
dj-database-url==0.4.1
Django==1.10.4
django-filer==1.2.5
django-mptt==0.8.7
django-polymorphic==1.0.2
easy-thumbnails==2.3
gunicorn==19.6.0
psycopg2==2.6.2
whitenoise==3.2
Pillow==4.0.0
settings.py
INSTALLED_APPS = [
...
'whitenoise.runserver_nostatic',
'django.contrib.staticfiles',
'easy_thumbnails',
'filer',
'mptt',
...
]
django-filer 1.2.5 在 Django 1.10 下无法运行
他们正在开发支持 Django 1.10 的 1.2.6 版本
对于 Django 1.10,您应该使用 django-polymorphic==1.3.1
,如 django-filter "Installation and Configuration" 指南中所写。它帮助我使 django-filter 与 Django 1.10 版本一起工作。
我正在尝试安装 django-filer。但是当我 运行 manage.py migrate
我得到 AttributeError: 'Manager' object has no attribute '_inherited'。我不知道那是什么意思。 (我用 Heroku 入门模板开始这个项目 https://github.com/heroku/heroku-django-template)
我最初以为我可能忘记安装 JPEG 和 ZLIB,但据我了解,它们是自 Pillow 3.0 以来的默认设置。
$ pip freeze
dj-database-url==0.4.1
Django==1.10.4
django-filer==1.2.5
django-mptt==0.8.7
django-polymorphic==1.0.2
easy-thumbnails==2.3
gunicorn==19.6.0
psycopg2==2.6.2
whitenoise==3.2
Pillow==4.0.0
settings.py
INSTALLED_APPS = [
...
'whitenoise.runserver_nostatic',
'django.contrib.staticfiles',
'easy_thumbnails',
'filer',
'mptt',
...
]
django-filer 1.2.5 在 Django 1.10 下无法运行
他们正在开发支持 Django 1.10 的 1.2.6 版本
对于 Django 1.10,您应该使用 django-polymorphic==1.3.1
,如 django-filter "Installation and Configuration" 指南中所写。它帮助我使 django-filter 与 Django 1.10 版本一起工作。