Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sqlite3: command not found Python 3 on Windows 10

Tags:

I installed Python 3.6.5 on Windows 10. I see that there is a sqlite3 folder in ...\Python\Python36\Lib directory. I added Python PATH to environment variable. However, I can't run the command "sqlite3" from Powershell nor Git Bash. It would say "command not found". What did I do wrong?

like image 780
s2000coder Avatar asked May 07 '18 00:05

s2000coder


1 Answers

Python's sqlite library probably is installed. Try: import sqlite3 in the Python shell.

If you want to be able to use sqlite's CLI program, you need to install it.

Download here. Use the Windows version obviously.

like image 145
Ozzy Walsh Avatar answered Sep 28 '22 17:09

Ozzy Walsh