docs: Add conda requirement to README + fix predix CLI

- README now requires conda (Miniconda/Anaconda)
- Clear installation instructions for 'predix' environment
- Fixed 'predix' CLI command to show welcome screen directly
This commit is contained in:
TPTBusiness
2026-04-10 12:59:37 +02:00
parent 2a54e704f1
commit 057c2e9d40
+8 -5
View File
@@ -97,7 +97,7 @@ All code in Predix is originally written and implemented independently. Predix e
### Prerequisites
- **Python 3.10 or 3.11**
- **Conda** (Miniconda or Anaconda) - Required for environment management
- **Docker** (required for sandboxed code execution)
- **Linux** (officially supported; macOS/Windows may work with adjustments)
@@ -106,16 +106,19 @@ All code in Predix is originally written and implemented independently. Predix e
```bash
# Clone repository
git clone https://github.com/TPTBusiness/Predix
cd predix
cd Predix
# Create conda environment
conda create -n predix python=3.10
# Create and activate conda environment
conda create -n predix python=3.10 -y
conda activate predix
# Install in editable mode
pip install -e .[test,lint]
pip install -e .
```
> **Important:** Predix requires a conda environment to manage dependencies properly.
> Using plain Python or other environment managers may cause conflicts.
### Configuration
1. **Create `.env` file:**