Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Latest commit

 

History

History
22 lines (13 loc) · 638 Bytes

SQLITE_SETUP.md

File metadata and controls

22 lines (13 loc) · 638 Bytes

Setting up SQLite

OS X

The easiest way to install SQLite on OS X is to use homebrew.

  1. First, make sure you have homebrew installed
  2. Run brew doctor and address anything homebrew wants you to fix
  3. Run brew install sqlite

Windows

  1. Grab the precompiled windows DLLs from the SQLite website. Make sure to also get the sqlite-tools package so you have a CLI that can run in cmd.exe
  2. Put the DLLs in your C:\WINDOWS\system32 folder

Linux

Please run

sudo apt-get install sqlite3 libsqlite3-dev

or the equivalent on your operating system