Apparently it is supposed to be part of Python3 but it says "bash: sqlite3: command not found".
I'm so new to all of this and I'm just trying to follow along with a tutorial on youtube. Any help would be much appreciated.
Apparently it is supposed to be part of Python3 but it says "bash: sqlite3: command not found".
I'm so new to all of this and I'm just trying to follow along with a tutorial on youtube. Any help would be much appreciated.
You probably need to download the command line interface here if you want to do stuff in bash:
https://sqlite.org/download.html
Do the binaries for your OS and then just follow the instructions. You might need a program to unzip them like:
Python comes with a library for sqlite that you can import into a .py program with
import sqlite3
that you can read about here, https://docs.python.org/3/library/sqlite3.html, but that's a thing you do inside of a python program.