I am trying to create my first django website.I am using windows and visual studio code. I am following the tutorials given on their sitehere I have completed the part 1, now I want to use sqlite database. I have used the command
$ python manage.py migrate
Now I want to check the schema of the database created. I have tried running the command
$ python manage.py dbshell
But it is giving me error :
CommandError: You appear not to have the 'sqlite3' program installed or on your path.
I don't how to resolve.
What I did? I have installed precompiled binaries from the official site. and also downloaded sqlite3.exe from the same link. Then I created a folder in my C:/ directory and included a folder SQLite and included these 3 files: sqlite3.def, sqlite3.dll and sqlite3.exe files. And also include the path of that folder into Environment Paths. Its working in a windows command prompt. But not running in virtual environment.
Please suggest some solutions.