Installation
Current version: v0.9.5 — see the changelog for what's new.
From PyPI
bash
# Core package
pip install qriton-hlm
# Specific version
pip install qriton-hlm==0.9.5
# With Gradio web UI
pip install qriton-hlm[ui]
# With Jupyter support
pip install qriton-hlm[jupyter]
# With database sync (MSSQL support)
pip install qriton-hlm[db]
# With Agent Framework middleware
pip install qriton-hlm[agent]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 --helpOr in Python:
python
import qriton_hlm
print(qriton_hlm.__version__) # 0.9.5