diff --git a/README.md b/README.md index a6fb1c75..6ee090b7 100644 --- a/README.md +++ b/README.md @@ -149,10 +149,16 @@ Our documentation has achieved **perfect 10/10 quality score** and provides comp ## 🛠️ **Installation** ### **System Requirements:** -- **Python**: 3.8+ -- **Node.js**: 16+ -- **Docker**: 20.10+ (optional) +- **Python**: 3.13.5+ (exact version required) +- **Node.js**: 24.14.0+ (exact version required) - **Git**: Latest version +- **Docker**: Not supported (do not use) + +### **🔍 Root Cause Analysis:** +The system requirements are based on actual project configuration: +- **Python 3.13.5+**: Defined in `pyproject.toml` as `requires-python = ">=3.13.5"` +- **Node.js 24.14.0+**: Defined in `config/.nvmrc` as `24.14.0` +- **No Docker Support**: Docker is not used in this project ### **🚀 Quick Installation:** ```bash @@ -174,6 +180,12 @@ aitbc --help # Install development dependencies pip install -e ".[dev]" +# Verify correct Python version +python3 --version # Should be 3.13.5+ + +# Verify correct Node.js version +node --version # Should be 24.14.0+ + # Run tests pytest @@ -181,6 +193,12 @@ pytest pre-commit install ``` +### **⚠️ Version Compliance:** +- **Python**: Must be exactly 3.13.5 or higher +- **Node.js**: Must be exactly 24.14.0 or higher +- **Docker**: Not supported - do not attempt to use +- **Package Manager**: Use pip for Python, npm for Node.js packages + --- ## 🎯 **Usage Examples**