I recently installed Django to use as a web framework and I am trying use the command python manage.py dbshell
to access the database shell for SQLite as said in th
I had same issue with visual studio code, I re-launched the application and it worked fine .
One solution that works for me is that I saved the downloaded files to the folder where the file manage.py is located.
I faced the same problem. Finally, I found a decision:
sqlite3
worked for me and I saw a message SQLite version 3.8.10.2 2015-05-20 18:17:19 ...
.If you are on linux ditribution:
Frist install sqlite3 with this command sudo apt-get install sqlite
via terminal.
After that, use this one command to access sql shell python manage.py dbshell
.
After you add the directory to your PATH
, close and reopen Command Prompt. This will make the changes to PATH
available to your current Command Prompt session.
If you run it in the linux, pls install sqlite3 cli firstly
sudo apt-get install sqlite3 libsqlite3-dev