[Answered ]-Sqlite3.OperationalError

2👍

You haven’t shown exactly how the path is represented in your settings.py file. But if you’ve done it how you show here, it won’t work. You need to use forward slashes (/) or double backwards slashes (\\).

This is because in Python a backslash usually means to escape the following character.

Leave a comment