django.core.exceptions.ImproperlyConfigured
Using the example of repository.
django.core.exceptions.ImproperlyConfigured: 'libsql.db.backends.sqlite3' isn't an available database backend or couldn't be imported. Check the above exception. To use one of the built-in backends, use 'django.db.backends.XXX', where XXX is one of: 'mysql', 'oracle', 'postgresql', 'sqlite3'
it suggests you haven't pip installed it properly?
what steps have you taken so far?
I just followed the tutorial that is in the repository
pip install django-libsql
settings.py
DATABASES = { "default": { "ENGINE": "libsql.db.backends.sqlite3", "NAME": "libsql://${your-db-name}.turso.io?authToken=${your-auth-token}", } }
obviously with my access credentials