pythonmysqldjangodatabasemariadb

how to solve django.db.utils.NotSupportedError in django


I got an error while running the project in Django. the thing is that unfortunately i upgraded my pip , MySQL client and Django versions

this is the error while running python manage.py run server

in check_database_version_supported
raise NotSupportedError(
django.db.utils.NotSupportedError: MariaDB 10.3 or later is required (found 10.1.19).

Solution

  • You have a MariaDB-10.1.19 client installed to MySQL server, and your application found that 10.1.19. As in the error you need to have MariaDB 10.3 or later. You can upgrade MariaDB as

    Now MariaDB is updated and issue will be solved.