mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
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:
@@ -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:**
|
||||
|
||||
Reference in New Issue
Block a user