Installation

Prerequisites

Before installing jonq, ensure you have the following:

  • Python 3.9 or higher

  • jq command line tool installed

Installing jq

jonq requires the jq command-line tool to be installed on your system.

For Linux (Debian/Ubuntu):

sudo apt-get install jq

For macOS using Homebrew:

brew install jq

For Windows using Chocolatey:

choco install jq

You can verify jq is installed correctly by running:

jq --version

Installing jonq

Install jonq using pip:

pip install jonq

Development Installation

If you want to contribute to the development of jonq, you can install from source:

git clone https://github.com/duriantaco/jonq.git
cd jonq
pip install -e .