Core Installation
Install the Elemm package and locate its gateway executable.
1. Installation
Install Elemm directly from PyPI:
bash
pip install elemmVirtual Environment (Recommended)
To avoid dependency conflicts, use a virtual environment:
bash
# 1. Create a virtual environment
python3 -m venv .venv
# 2. Activate it
# Linux/macOS/WSL:
source .venv/bin/activate
# Windows:
.venv\Scripts\activate
# 3. Install the package
pip install elemmLocating the Executable
AI agents often require absolute paths to the elemm-gateway executable:
- Linux/macOS/WSL:
which elemm-gateway - Windows:
where elemm-gateway
Typical paths:
- Linux/macOS:
/home/user/.local/bin/elemm-gatewayor inside your venv:/path/to/project/.venv/bin/elemm-gateway - Windows:
C:\Users\User\AppData\Local\Programs\Python\Python310\Scripts\elemm-gateway.exe