sds357 If you want the newer sqlite3 to be the default in your shell or in an application that runs sqlite3
, adjust your PATH
environment variable like so:
export PATH=/usr/sqlite330/bin:$PATH
If you want it to be used with a dynamically-linked executable then adjust LD_LIBRARY_PATH
:
export LD_LIBRARY_PATH=/usr/sqlite330/lib:$LD_LIBRARY_PATH