/ Published in: Bash
Simply open up terminal and run these commands one at a time. You may need sudo or root access.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$ curl http://www.sqlite.org/sqlite-3.5.4.tar.gz | tar zx $ cd sqlite-3.5.4 $ ./configure --prefix=/usr/local $ make $ sudo make install #Check that SQLite is installed properly $ sqlite3 --version