Best current path for Windows users
Automatic setup
install.bat Checks Python, prepares the runtime prerequisites, and keeps the first-run experience more guided than raw manual setup.
Installation
LordCoder already ships with multiple installation paths. The native core is cross-platform in direction, while the current smoothest onboarding path is still tuned for Windows developers who want a cleaner on-ramp into private local AI coding.
Best current path for Windows users
install.bat Checks Python, prepares the runtime prerequisites, and keeps the first-run experience more guided than raw manual setup.
For developers who want explicit control
pip install uv
python -m uv tool install --force --python python3.12 aider-chat
ollama pull qwen2.5-coder:14b Matches the repo's preferred compatibility path for developers who want a cleaner manual setup on Windows.
Conservative Python setup
python -m venv .venv
.venv\Scripts\activate
pip install aider-chat==0.13.0 psutil pytest pytest-cov A useful fallback when you prefer a traditional environment or need to step around toolchain friction.
Recommended sequence
The docs now position setup as a guided workflow: prepare the toolchain, choose a realistic model, and launch with the generated effective config instead of manually stitching every step together.
Use Python 3.8+ with the documented preference for Python 3.12 in the `uv` installation path.
Install Ollama locally and keep it available before pulling the coding model you want to run.
Start with `qwen2.5-coder:14b` for the balanced path described in the project docs.
Run the generated workflow config to start LordCoder with the project's current local defaults and saved model choice.
Need the source docs?