SQLite Forum

Wrong version for download
Login

Wrong version for download

(1) By anonymous on 2021-07-21 06:27:39 [source]

Hi,

when I download the newest version from here https://www.sqlite.org/2021/sqlite-tools-linux-x86-3360000.zip I expect it to be version 3.36.0

When I extract and run sqlite3 though, it says "SQLite version 3.7.17 2013-05-20 00:56:22"

(2) By Warren Young (wyoung) on 2021-07-21 07:59:35 in reply to 1 [link] [source]

You didn’t unpack it in your PATH. Either:

  • do so; or
  • cd into the directory where it’s unpacked and run it as ./sqlite3; or
  • drag sqlite3 from the extracted folder into Terminal so you get an explicit path

(3) By anonymous on 2021-07-21 10:34:46 in reply to 2 [link] [source]

Oh, my bad. Sorry, and thank you.