I am struggling to link SQLite with Git Bash

Hi

I am very new to computer science but I am sure I have followed the instructions to the letter.

I have downloaded both Git Bash and SQLite3

I have tried with unzipping the SQLite3 folder in Downloads (as per the written instruction) and also by creating a new folder (as per the video).

When I open the Git Bash terminal and type the commands , I get the "No such file or directory " messages’

The screenshot shows when I tried to access the Downloads folder from Git Bash

Would appreciate any help,

Regards
Mike

did you try just typing:

winpty sqlite3

It looks like Git Bash isn’t finding your SQLite3 executable. Try these steps:

  1. Check the Path – Run ls ~/Downloads to confirm SQLite3 is there.
  2. Navigate Correctly – Use cd ~/Downloads/sqlite3 (or wherever you extracted it).
  3. Run Directly – Try ./sqlite3.exe if inside the folder.
  4. Add to PATH – Move SQLite3 to C:\sqlite and add it to your system PATH.