Quick answer: Editor → Manage Export Templates → Download & Install. Pick the version that exactly matches your editor (4.3.stable, 4.4.stable, etc.).
You upgrade Godot from 4.3 to 4.4. Try to export a Windows build. Error: “Export template not found at …”. The export presets are configured; the project compiles; the missing piece is the runtime template binary that ships per Godot version.
What an Export Template Is
An export template is the pre-compiled Godot runtime for a target platform. When you export, Godot bundles your project into the template binary, producing your final executable. Each Godot editor version has matching templates downloaded separately to keep editor install size small.
The Fix
- Open Godot.
- Editor menu → Manage Export Templates.
- The dialog shows your current editor version at the top.
- Click Download & Install. Godot fetches the templates matching your editor version.
- Once installed, retry the export.
Templates land in a per-user directory (Windows: %APPDATA%\Godot\export_templates\; Linux: ~/.local/share/godot/export_templates/).
Offline Install
For machines without internet:
- Download
Godot_v4.X.Y-stable_export_templates.tpzfrom godotengine.org/download on a connected machine. - Transfer to target machine.
- Manage Export Templates → Install From File → pick the .tpz.
Multiple Versions Side-by-Side
Templates are versioned by directory: 4.3.stable/, 4.4.stable/, etc. Installing 4.4 templates doesn’t replace 4.3. You can keep multiple Godot editors with matching templates installed simultaneously.
Custom Templates
For features like custom build flags or compiled-from-source templates, point your export preset to a Custom Template path. Useful for embedding native libraries or stripping Godot modules. Normal users shouldn’t need this.
Verifying
Retry the export. Should produce a binary. If still failing, check Manage Export Templates — the listed version must exactly match the editor version (including the suffix).
“Templates and editor are version-locked. Upgrade one, upgrade the other.”
Bookmark the godotengine.org/download templates link — you’ll need it every time you upgrade Godot.