Skip to content

Installation

From PyPI

bash
# Core package
pip install qriton-hlm

# With Gradio web UI
pip install qriton-hlm[ui]

# With Jupyter support
pip install qriton-hlm[jupyter]

From Source

bash
git clone https://github.com/qriton/energy-lang.git
cd energy-lang
pip install -e .

Requirements

  • Python >= 3.9
  • PyTorch >= 2.0
  • NumPy

Optional dependencies are installed automatically with the extras above.

Verify Installation

bash
qriton-hlm --help

Or in Python:

python
from qriton_hlm import BasinSurgeon
print("Ready")