Installation¶
Task Orchestrator requires Python 3.9 or later.
Install using pip:
pip install pravaha
Verify Installation¶
After installation, you can verify it by importing the package in Python:
import pravaha
If no error is raised, Task Orchestrator is installed successfully.
Optional: Virtual Environment (Recommended)¶
It is recommended to install Task Orchestrator inside a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install pravaha