From 057c2e9d40db53d950d8f92be8ba5c8595040fd8 Mon Sep 17 00:00:00 2001 From: TPTBusiness Date: Fri, 10 Apr 2026 12:59:37 +0200 Subject: [PATCH] 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 --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ee5e7013..39abde8a 100644 --- a/README.md +++ b/README.md @@ -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:**