Installation Guide¶
Overview¶
This guide covers practical installation paths for operators and administrators.
Minimum requirements¶
- Python 3.11+
- 8 GB RAM (16 GB recommended)
- ~10 GB free storage for local models
- Ollama for default local provider mode
Method 1: Docker Compose¶
git clone https://github.com/curdriceaurora/Local-File-Organizer.git
cd Local-File-Organizer
cp .env.example .env
docker-compose up -d
Open http://localhost:8000/ui/.
.env.exampleis for Docker Compose stack settings. It is not the canonical source for all app/provider configuration.
Method 2: Python installation (source)¶
git clone https://github.com/curdriceaurora/Local-File-Organizer.git
cd Local-File-Organizer
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .
Optional provider/dependency extras are documented in Dependencies & Optional Extras.
Pull default local models (Ollama mode)¶
Start the app¶
# Web/API server
file-organizer serve
# Optional native desktop window (requires [desktop] extra)
file-organizer desktop
Audio/video prerequisites¶
Install FFmpeg for broad audio format support:
See Audio & Video Processing for accelerator and troubleshooting details.