SIENTIAPDE-1243: Update README with correct repository name and installation instructions.

This commit is contained in:
Bruno Domingues
2025-10-01 14:11:36 -03:00
parent e83dd9d3c2
commit e318b91c63

View File

@@ -367,13 +367,13 @@ flowchart LR
1. **Clone the repository** 1. **Clone the repository**
```bash ```bash
git clone <repository-url> git clone <repository-url>
cd sientia-dataops-laborious cd sientia-dataops-model-manager
``` ```
2. **Create virtual environment** 2. **Create virtual environment**
```bash ```bash
python3.11 -m venv venv conda create -p ./venv python=3.11
source ./venv/bin/activate conda activate ./venv
``` ```
3. **Install dependencies** 3. **Install dependencies**
@@ -395,6 +395,17 @@ flowchart LR
./install_dependencies.sh ./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** 4. **Create environment configuration file**
```bash ```bash
cp .env.example .env cp .env.example .env