Installation

This installation guide provides instructions on installing the python library for dotjson. For instructions on how to use dotjson, please see the usage guide.

Note: This library is part of a commercial product. If you’d like to learn more or obtain access, please reach out to us.

System Requirements

  • x86_64 architecture
  • Linux, preferably Ubuntu 24.04
  • Python 3.10 or newer

Install the library

We distribute prebuilt Python wheels for versions 3.10–3.13. Once you’ve activated the Python environment of your choice, install the wheel with:

# Create a directory for dotjson
pip install /path/to/wheel/dotjson-x.y.z-cp3XX-cp3XX-manylinux_2_34_x86_64.whl

Replace /path/to/wheel/ with the actual location of the file, and adjust x.y.z and cp3XX to match the provided wheel.

Usage

After installation, import the library in your python code.

import dotjson
from dotjson import Guide, Index, LogitsProcessor, Vocabulary

Run your program:

python yourprogram.py

Next steps