Last active
April 21, 2026 02:05
-
-
Save kmvan/c0ec110c175b5b059db4de28030b68cd to your computer and use it in GitHub Desktop.
Update CentOS sqlite3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ./configure --prefix=/usr/local | |
| make && make install | |
| mv /usr/bin/sqlite3 /usr/bin/sqlite3_old | |
| ln -s /usr/local/bin/sqlite3 /usr/bin/sqlite3 | |
| echo "/usr/local/lib" > /etc/ld.so.conf.d/sqlite3.conf | |
| ldconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment