Download Latest Version koka-v3.2.3-linux-arm64.tar.gz (49.2 MB)
Email in envelope

Get an email when there's a new version of koka

Home / v3.2.3
Name Modified Size InfoDownloads / Week
Parent folder
install.bat 2026-03-18 19.0 kB
koka-v3.2.3-windows-x64.tar.gz 2026-03-18 69.8 MB
language-koka-3.2.2.vsix 2026-03-18 377.6 kB
koka-v3.2.3-macos-x64.tar.gz 2026-03-18 32.0 MB
install.sh 2026-03-18 20.7 kB
koka-v3.2.3-linux-x64.tar.gz 2026-03-18 47.7 MB
koka-v3.2.3-linux-arm64.tar.gz 2026-03-18 49.2 MB
koka-v3.2.3-macos-arm64.tar.gz 2026-03-18 47.7 MB
README.md 2026-03-18 2.5 kB
v3.2.3 source code.tar.gz 2026-03-18 4.5 MB
v3.2.3 source code.zip 2026-03-18 5.2 MB
Totals: 11 Items   256.5 MB 0

VS Code installation

It is recommended to install the binary compiler via the VS Code Koka extension. See the getting started guide for more information.

Command-line installation

Linux (x64, arm64) and macOS (x64, arm64)

Tested on macOS, Ubuntu, Debian, and should run on most Linux distributions. From a command prompt, run:

curl -sSL https://github.com/koka-lang/koka/releases/download/v3.2.3/install.sh | sh

After install, run koka to verify that Koka installed correctly.

  • For most installations this will ask for root access in order to install to /usr/local/bin. For more control, you can pass a different prefix. For example, installing to ~/.local instead:
    curl -sSL https://github.com/koka-lang/koka/releases/download/v3.2.3/install.sh | sh -s -- --prefix=~/.local

  • To uninstall a version, use the --uninstall option:
    curl -sSL https://github.com/koka-lang/koka/releases/download/v3.2.3/install.sh | sh -s -- --uninstall

Windows (x64, arm64)

Open a cmd prompt and download and run the installer:

curl -sSL -o %tmp%\install-koka.bat https://github.com/koka-lang/koka/releases/download/v3.2.3/install.bat && %tmp%\install-koka.bat

This will also prompt to install the Clang compiler, the Windows SDK if needed, and syntax highlighting for the VS Code editor. After install, run koka to verify that Koka installed correctly.

  • On Windows arm64, we use the x64 Koka compiler (which runs emulated), but the generated code is native arm64.

  • On Windows, the default install is to the user profile at %APPDATA%\local. You can change the installation directory using --prefix. For example:
    curl -sSL -o %tmp%\install-koka.bat https://github.com/koka-lang/koka/releases/download/v3.2.3/install.bat && %tmp%\install-koka.bat --prefix=c:\programs\local

  • To uninstall a version, use the --uninstall option:
    curl -sSL -o %tmp%\install-koka.bat https://github.com/koka-lang/koka/releases/download/v3.2.3/install.bat && %tmp%\install-koka.bat --uninstall

Other platforms

You need to build from source, however Koka has few dependencies and should build from source without problems on most common platforms.

Source: README.md, updated 2026-03-18