[Django]-Unable to open database file Django/sqlite3

3👍

OK, that is my suggestion:

DATABASES = {
'default': {
    'ENGINE': 'django.db.backends.sqlite3', 
    'NAME': 'practice.db', # Just the name
    'USER': '',
    'PASSWORD': '',
    'HOST': '',             
    'PORT': '',             
        }
    }

I think you maybe have an error in the path, try pwd over /Home/Development/Django/django_prac/practice/database/ directory and copy the output.
Then plus the db name

hope helps

Leave a comment