First time using Django, so I looked up a tutorial - I followed this link and everything went fine, until I had to adjust the settings.py file, where I followed this other link and got this error:
django.core.exceptions.ImproperlyConfigured: 'firebird' isn't an available database backend.
Try using 'django.db.backends.XXX', where XXX is one of:
'mysql', 'oracle', 'postgresql', 'sqlite3'
I have django-firebird installed via pip install django-firebird
, I have a different python script which uses import fdb
just fine, and I have been able to access my firebird database regularly with the other python script, so what could be causing this error?
ps.: This and this branched out from the first link mentioned as the follow-up steps.