安装 SQLite

Windows

winget install SQLite.SQLite

Linux

Debian/Ubuntu:

sudo apt update
sudo apt install sqlite3

MacOS

brew install sqlite3

源码编译安装

请访问 SQLite 下载页面,从源代码区下载 sqlite-autoconf-*.tar.gz

tar xvzf sqlite-autoconf-3071502.tar.gz
cd sqlite-autoconf-3071502
./configure --prefix=/usr/local
make
make install

验证

$ sqlite3
SQLite version 3.31.1 2020-01-27 19:55:54
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite>