Skip to content

Instantly share code, notes, and snippets.

@danieldogeanu
Last active September 24, 2019 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danieldogeanu/19951434b8adbdb2726e2021e9e0bbb9 to your computer and use it in GitHub Desktop.
Save danieldogeanu/19951434b8adbdb2726e2021e9e0bbb9 to your computer and use it in GitHub Desktop.
How to install SQLite 3 on Windows 10.
  1. Go to the SQLite download page;
  2. Under Precompiled Binaries for Windows download sqlite-tools-win32-x86-3290000.zip;
  3. Extract sqlite-tools-win32-x86-3290000.zip on the C:\ drive (it can be in the root of the drive or in a folder without spaces in its name);
  4. Search for "environment variables" in Windows Search and click on Edit the system environment variables;
  5. In the System Properties window click Environment Variables...;
  6. Under System variables select Path and click Edit...;
  7. In the Edit environment variable window, click New and paste the folder location where you extracted sqlite-tools-win32-x86-3290000.zip on the C:\ drive.
  8. Optionally you can rename sqlite3.exe to sqlite.exe, so you can type only sqlite command. Or you can duplicate sqlite3.exe and rename it to sqlite.exe to have access to both versions for compatibility.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment