Windows
To work with SQLite on Windows, we install it in WSL.
Open a WSL terminal and run
sudo apt update.Run
sudo apt install sqliteto install.Close and reopen the terminal, and run
sqlite3 --versionto make sure it installed correctly.
That's it! You're good to go.
Corndel