From e318b91c637db2461c4753a4b87bb45227ac9ccb Mon Sep 17 00:00:00 2001 From: Bruno Domingues Date: Wed, 1 Oct 2025 14:11:36 -0300 Subject: [PATCH] SIENTIAPDE-1243: Update README with correct repository name and installation instructions. --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3f86305..5f05ecc 100644 --- a/README.md +++ b/README.md @@ -367,13 +367,13 @@ flowchart LR 1. **Clone the repository** ```bash git clone - cd sientia-dataops-laborious + cd sientia-dataops-model-manager ``` 2. **Create virtual environment** ```bash - python3.11 -m venv venv - source ./venv/bin/activate + conda create -p ./venv python=3.11 + conda activate ./venv ``` 3. **Install dependencies** @@ -395,6 +395,17 @@ flowchart LR ./install_dependencies.sh ``` + 4. **Install Python dependencies** + ```bash + python -m pip install --upgrade pip + pip install -r requirements.txt + ``` + + 5. **Install test libraries** + ```bash + pip install pytest pytest-cov pytest-asyncio + ``` + 4. **Create environment configuration file** ```bash cp .env.example .env