/ 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
$ 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
You need to login to post a comment.
