- Python: 3.9+
- Rust: 1.70+
- Nextflow: 22.10+
cd /Users/rismanadnan/RAM-Papers/Paper1
# Create and activate venv
python3 -m venv .venv
source .venv/bin/activate
# Install Python dependencies
pip install -r requirements.txt# From the project root
nextflow run workflows/smoke.nfThe Python classical ML smoke requires local Python dependencies. After creating a venv and running pip install -r requirements.txt as above, re-run with resume:
nextflow run workflows/smoke.nf -resume- CNN (DL): green
- LLM: green
- RL: green
- RNN (DL): green
- Python Classical ML: requires venv +
pip install -r requirements.txt; then-resume
- If Nextflow isn’t found: install via
brew install nextflow(macOS) or see Nextflow docs. - If
pip installfails on Apple Silicon: ensure a recent Python and considerpip install --upgrade pip setuptools wheelfirst. - To exit venv:
deactivate.