Can't run PHP 7.4 in custombuild 2.0

adriangrzybek

Verified User
Joined
Mar 23, 2021
Messages
28
I cant run or update php 7.4 in my CustomBuild 2.0 running on Debian 10

log below, how can I fix it to work properly?:

Code:
checking for sqlite3 > 3.7.4... no
configure: error: Package requirements (sqlite3 > 3.7.4) were not met:

No package 'sqlite3' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables SQLITE_CFLAGS
and SQLITE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
Done!
 
You probably need to install libsqlite3-dev.

Bash:
$ apt-get install libsqlite3-dev
 
Having same problem
Code:
checking for sqlite3 > 3.7.4... no
configure: error: Package requirements (sqlite3 > 3.7.4) were not met:

No package 'sqlite3' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables SQLITE_CFLAGS
and SQLITE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
 
Back
Top