django报错搜集

mysql

LookupError: unknown encoding: utf8mb4

如果要在DATABASE的Mysql设置中,使用charset=utf8mb4

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        ...
        'OPTIONS': {'charset': 'utf8mb4'}
    }
}

你需要将MySQL-python升级到1.2.5以上

pip install MySQL-python --upgrade

猜你喜欢

转载自blog.csdn.net/ppppfly/article/details/53437243