> ## Documentation Index
> Fetch the complete documentation index at: https://fastql.vachagan.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install FastQL and prepare a supported Python environment.

FastQL requires Python 3.11 or newer.

```bash theme={null}
pip install mygenx-fastql
```

For repository development, install the project with `uv`:

```bash theme={null}
git clone https://github.com/MyGenX/FastQL.git
cd FastQL
uv sync --all-extras
```

Verify the package and command entry point:

```bash theme={null}
uv run python -c "import fastql; print(fastql.__version__)"
uv run python -m fastql --help
```

<Note>
  The documentation application has a separate Node.js toolchain under `docs/`.
  It is not required to use the Python package.
</Note>
