From a60f76c30e71a616c8c08d9fbc4cf1b5e672d8ed Mon Sep 17 00:00:00 2001 From: Nicholas Kalar Date: Mon, 3 Nov 2025 23:15:45 -0500 Subject: [PATCH] Updated README --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 49eaf83..d07ef5a 100644 --- a/README.md +++ b/README.md @@ -30,15 +30,19 @@ needs to be on its own line and any special characters should be escaped. ## How To Use 1) Create a virtual environment (optional, but best practice) +```zsh +python3 -m venv ./.venv +source ./.venv/bin/activate +``` 2) Use Pip to install all required packages -```python -pip install -r requirements +```zsh +pip install -r requirements.txt ``` 3) Run the Orchestrator: -```python +```zsh python src/orchestrator.py ``` OR -```python +```zsh python3 src/orchestrator.py ``` \ No newline at end of file