How to Download and Install jq on Windows 10 If you work with JSON data, is an essential tool. It is often described as " sed for JSON " because it allows you to slice, filter, map, and transform structured data directly from your command line with the same ease that grep or awk handle text.
If you prefer not to use a package manager, you can download the standalone executable directly from the official jq website . Download jq jq download for windows 10
While jq is a core utility for many Linux distributions, it is not pre-installed on Windows 10. This guide covers the most efficient ways to download and set up jq on your Windows 10 machine. Method 1: Installing via Winget (Recommended) How to Download and Install jq on Windows
If you already use Chocolatey to manage your Windows software, you can install jq with a single command. Open as an Administrator. Run the command: powershell choco install jq -y Use code with caution. Verification: Type jq --version to confirm it is working. Method 3: Direct Download (Manual Installation) Download jq While jq is a core utility
Microsoft’s official package manager, , is built into modern versions of Windows 10 (version 1809 and later). This is the fastest method because it automatically handles the download and adds jq to your system's PATH. Open PowerShell as an Administrator. Run the following command: powershell winget install jqlang.jq Use code with caution.
Once the installation is complete, to apply the changes. Verify the installation by typing: powershell jq --version Use code with caution. Method 2: Installing via Chocolatey