# SQLite.Tutorial **Repository Path**: hexu1985/SQLite.Tutorial ## Basic Information - **Project Name**: SQLite.Tutorial - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-27 - **Last Updated**: 2022-08-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 在Ubuntu下进行sqlite安装及使用的简单实例如下: 1. 在终端下输入以下命令 ``` $ sudo apt-get install sqlite3 ``` 之后在终端下输入如下命令,查看下安装好的sqlite的版本 ``` $ sqlite3 -version ``` 2. 安装sqlite3编译需要的工具包 ``` $ sudo apt-get install libsqlite3-dev ``` 3. 安装sqlitebrowser ``` $ sudo snap install sqlitebrowser ``` 4. SQLite教程链接: 5. sqlitebrowser链接: