SQLite Studio
1.1、SQLite Studio简介
是什么 ?:a free, open-source, cross-platform GUI front-end for SQLite
开发语言:C
官方主页:https://sqlitestudio.pl
源码仓库:https://github.com/pawelsalawa/sqlitestudio
1.2、通过包管理器安装SQLite Studio
操作系统包管理器安装命令
WindowsChocolateychoco install -y sqlite-studio.portable
macOSHomeBrewbrew install sqlitestudio

Arch Linux

ArcoLinux

Manjaro Linux

yayyay -Syyu --noconfirm
yay -S    --noconfirm sqlitestudio
1.3、通过下载预编译好的二进制压缩包安装SQLite Studio

step1、安装依赖

所有时Terminal + Shell
下载时cURL
解压时tar + xz
运行时
  • glibc ( libc.sold-linux-x86-64.so )

step2、使用curl下载编译好的SQLite Studio二进制压缩包 (

curl -LO https://sqlitestudio.pl/files/sqlitestudio3/complete/linux64/sqlitestudio-3.2.1.tar.xz

step3、使用tar解压压缩包

tar vxf sqlitestudio-3.2.1.tar.xz -C ~/bin

step4、将~/bin/SQLiteStudio/加入PATH环境变量中

export PATH=~/bin/SQLiteStudio:$PATH

step5、启动

sqlitestudio
1.4、SQLite Studio的使用