Step 1: Check if chocolatey is installed in your system
1 2 |
## Check if Chocolety is already installed choco --version #should return an output |
Step 2: Install chocolatey
1 2 3 |
## Install Chocolety if not already installed ## Open a command propmt as admin and execute below command @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" |
Step 3: Install SQLite on Windows OS:
1 2 |
## Install sqlite using chocolety choco install sqlite |
Step 4: Check if SQLite was successfully installed
1 2 3 4 5 6 7 |
## Check if SQLite was installed successfully sqlite3 --version ## should return an output ## Start SQLite sqlite3 |