I downloaded the folder and put it into C:\Python27\Lib\site-packages\django\contrib\gis\db\backends\firebird,but when I use it,give me a
error:django.core.exceptions.ImproperlyConfigured: 'firebird' isn't an available database backend.
Try using `django.db.backends.XXX, where XXX is one of:
'dummy', 'mysql', 'oracle', 'postgresql_psycopg2', 'sqlite3'
Error was: No module named firebird.base
I have already write the path into PYTHONPATH.
How can I get this to work?
Use Django 1.3 (or higher) and follow the instructions on the django-firebird page.
Django 1.4 uses the django-firebird driver on github
In your
settings.pyfile, use something similar to this…