在Debian 10 Buster上安装SQLite
步骤1.在安装任何软件之前,通过apt
在终端中运行以下命令来确保系统是最新的很重要:
sudo apt update
sudo apt upgrade
步骤2.在Debian 10上安装SQLite。
现在运行以下命令在Debian Linux系统上安装SQLite:
sudo apt install sqlite3
完成后,检查版本:
$ sqlite3 --version 3.27.2 2021-01-19 16:46:36
要开始sqlite3
运行以下命令:
$ sqlite3 SQLite version 3.27.2 2021-01-19 16:46:36 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database. sqlite>
感谢您使用本教程在Debian 10 Buster上安装SQLite。有关其他帮助或有用信息,建议您访问SQLite官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39055.html