CRITICAL FIX: Repair broken installation

- Add missing psutil to requirements.txt (was causing ModuleNotFoundError)
- Change pip install -e . to pip install . in README (production vs dev install)
- Fix installation issue by using proper production install method

Tested: pip install . now works properly without hanging or missing dependencies
This commit is contained in:
FSSCoding 2025-09-06 15:29:19 +10:00
parent 5912947d4b
commit 2d874379dc
2 changed files with 5 additions and 2 deletions

View File

@ -89,7 +89,7 @@ cd Fss-Mini-Rag
python3 -m venv .venv
source .venv/bin/activate # Linux/macOS
# .venv\Scripts\activate # Windows
pip install -e .
pip install .
```
**Step 2: Start Using**

View File

@ -19,4 +19,7 @@ rich>=13.0.0
PyYAML>=6.0.0
# Text search utilities (lightweight)
rank-bm25>=0.2.2
rank-bm25>=0.2.2
# System monitoring
psutil