Created
July 13, 2018 14:21
-
-
Save EdgarOrtegaRamirez/e4c366687d48d946dc63d8cff8a64441 to your computer and use it in GitHub Desktop.
Install SQLite3 in Linux from source code (amalgamation)
This file contains 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
wget https://www.sqlite.org/2018/sqlite-autoconf-3240000.tar.gz | |
tar xvfz sqlite-autoconf-3240000.tar.gz | |
cd sqlite-autoconf-3240000 | |
./configure | |
make | |
make install # you may need sudo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment