How to install SQLite on CentOS 6 or CentOS 7?
Update the packages:
1 2 |
## Update packages sudo yum update -y |
Install SQLite:
1 2 |
## Install SQLite sudo yum install sqlite -y |
Check if SQLite installation was successful:
1 2 3 4 5 6 7 |
## Check if SQLite was installed successfully sqlite3 --version ## should return an output ## Start SQLite sqlite3 |
How to install SQLite on CentOS 8?
Update the packages:
1 2 |
## Update packages sudo dnf update -y |
Install SQLite:
1 2 |
## Install SQLite sudo dnf install sqlite -y |
Check if SQLite installation was successful:
1 2 3 4 5 6 7 |
## Check if SQLite was installed successfully sqlite3 --version ## should return an output ## Start SQLite sqlite3 |