- Python 3.10+
- Git
- Docker + Docker Compose (recommended for full stack)
- Linux/macOS shell or PowerShell on Windows
For desktop GUI launch on Linux, ensure display libraries and DISPLAY are available.
git clone https://github.com/rwilliamspbg-ops/Mohawk-Inference-Engine.git
cd Mohawk-Inference-Enginepython3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txtWindows PowerShell:
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install --upgrade pip
pip install -r requirements.txtIn VS Code:
- Dev Containers: Rebuild and Reopen in Container
Then run:
bash .devcontainer/post_create.shFast smoke mode:
MOHAWK_SKIP_LIBOQS_BUILD=1 MOHAWK_SKIP_PY_DEPS=1 bash .devcontainer/post_create.shpython - <<'PY'
import fastapi, uvicorn, requests, psutil
print('Core dependencies OK')
PY- Go to
SETUP.mdfor runtime startup options. - Go to
QUICKSTART.mdfor API smoke tests.