Sqlite 3.9 is required

while deploying django project have been stucked one this problem from 3-4 days and i did’nt get any solution

SQLite 3.9.0 or later is required (found 3.7.17)

Welcome @superseo Ramadhan Mubarak

This is not related to cyberpanel as it does not offer sqlite3.

You have to uninstall the current version and install the required version.

Make sure to backup any databases you have.

$ sqlite3 --version
## this shows3.7.17
$ sudo apt purge sqlite3 && sudo apt autoremove && sudo apt autoclean
$ sudo apt install build-essential
## https://www.sqlite.org/download.html
### download  version 3.41.2
$ wget https://www.sqlite.org/2023/sqlite-autoconf-3410200.tar.gz
$ tar xvfz sqlite-autoconf-3410200.tar.gz
$ cd sqlite-autoconf-3410200
$ ./configure --prefix=/usr
### specify the number of cores you want to use in the compilation process
$ make -j 2
$ sudo make install
$ sqlite3 --version

If you have questions about sqlite3 beyond this point raise the same here SQLite Forum: Forum