Installing SQLite3 in OsX Leopard


/ Published in: Bash
Save to your folder(s)

Simply open up terminal and run these commands one at a time. You may need sudo or root access.


Copy this code and paste it in your HTML
  1. $ curl http://www.sqlite.org/sqlite-3.5.4.tar.gz | tar zx
  2. $ cd sqlite-3.5.4
  3. $ ./configure --prefix=/usr/local
  4. $ make
  5. $ sudo make install
  6.  
  7. #Check that SQLite is installed properly
  8. $ sqlite3 --version

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.