One-click installer and build scripts for Aseprite on Windows.
Go to the Releases page and download Aseprite-1.3.17-Setup.exe. Run it and follow the installer prompts — no build tools or technical knowledge required.
- Aseprite pre-built for Windows x64
- Optional desktop shortcut
- Optional
.ase/.asepritefile associations - Start Menu entry
- Clean uninstaller via Add/Remove Programs
If you want to compile Aseprite from source instead of using the pre-built installer, two scripts are provided:
build_aseprite.bat handles the entire process automatically:
- Installs winget (Windows Package Manager) if missing
- Installs Git, CMake, Ninja, and Visual Studio Build Tools via winget
- Downloads pre-built Skia library
- Clones the Aseprite source code
- Builds Aseprite with CMake + Ninja
Just double-click the file and follow the prompts. Requires Windows 10/11 x64.
If you already have Visual Studio Build Tools with the C++ workload, CMake, and Ninja installed, run_build.bat is a simpler script that:
- Loads the VS 2022 x64 build environment
- Runs CMake to configure the project
- Runs Ninja to compile
You'll need to clone the Aseprite source and download Skia manually first — see the Aseprite INSTALL.md for details.
After building, you can package the result into an installer:
- Install Inno Setup 6
- Open
aseprite_installer.issin Inno Setup - Press Ctrl+F9 to compile
- The installer will be created in
installer_output/
- Windows 10/11 x64
- ~2 GB disk space (installed)
- ~10 GB disk space if building from source (build tools + source + build artifacts)
Aseprite source code is provided under its own EULA. You may compile it for personal use. Distributing binaries requires a license from aseprite.org.
The build and installer scripts in this repository are provided as-is for convenience.