Installation ============ Task Orchestrator requires **Python 3.9 or later**. Install using ``pip``: .. code-block:: console pip install pravaha Verify Installation ------------------- After installation, you can verify it by importing the package in Python: .. code-block:: 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: .. code-block:: console python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate pip install pravaha