Django3.0使用xadmin相关报错解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django3.0使用xadmin相关报错解决相关的知识,希望对你有一定的参考价值。

 首先安装xadmin,pip install xadmin,或者下载放到项目根目录都可以,直接运行会报错,主要因为

Django中six包已经移除,使用独立的第三方包。
需要改的地方有:
requirements.txt中django-formtools==2.2需要升级到2.2版本,2.1版本会报错

根目录下sites.py中需要替换

from django.utils import six ==> import six

xadmin/models.py中以下需要替换

**from django.core.urlresolvers import NoReverseMatch, reverse ==> from django.urls import NoReverseMatch, reverse

**from django.utils.encoding import python_2_unicode_compatible, smart_text ==>

from six import python_2_unicode_compatible
from django.utils.encoding import smart_text

以上是关于Django3.0使用xadmin相关报错解决的主要内容,如果未能解决你的问题,请参考以下文章

Django3.0.3使用Xadmin

python3.8 + django3.0.7 使用pymysql报错:django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13

Django集成Xadmin list index out of range报错解决方案

Django2.1集成xadmin管理后台错误解决

Django学习之django3.0.3报错:Specifying a namespace in include() without providing an app_name

django,访问xadmin后台报错Exception Value: (1146, "Table 'django.xadmin_usersettings' doesn