Setup OCaml with Dune in Under a Minute

The Dune nightly is a binary of the Dune development branch with a nightly release

This Dune installation is an UNSTABLE NIGHTLY RELEASE of Dune

Install Dune

Copy & Install (nightly)

curl -fsSL https://get.dune.build/install | sh

Copy & Install (current stable)

curl -fsSL https://get.dune.build/install | sh -s - --release 3.23.0

Copy & Install (latest stable)

curl -fsSL https://get.dune.build/install | sh -s - --release latest

Getting Started

You can create and run your first hello-world program using Dune like this

Run

$ PROJECT=hello_world
$ dune init proj "$PROJECT"
$ cd "$PROJECT"
$ # To opt in to using dune for package management
$ cat > dune-workspace <<EOF
> (lang dune 3.21)
> (pkg enabled)
> EOF
$ dune exec "$PROJECT"

Editor Configuration

Here is how to configure some popular editors for OCaml using the Dune nightly.

Visual Studio Code

Install version 1.21.0 or higher of the vscode-ocaml-platform plugin for Visual Studio Code. By default it assumes that you'll be using Opam to install ocamllsp. To configure it to work with the Dune nightly, add the following to your settings.json file:

// settings.json
{
"ocaml.sandbox": {
"kind": "custom",
"template": "$prog $args"
}
}
Neovim

The easiest way to configure Neovim for OCaml is by installing the lspconfig package. The default configuration will work with the Dune nightly, so just enable it with:

-- init.lua
require'lspconfig'.ocamllsp.setup{}
Emacs

Emacs users will need to add the Dune nightly's bin directory to their exec-path and PATH variables. The rest of the configuration is the same as for regular OCaml. Here's a minimal example configuration for Emacs that uses use-package to install packages:

; init.el
; add the dune nightly bin path to exec-path and PATH
(add-to-list 'exec-path "~/.local/bin" t)
(setenv "PATH" (concat (expand-file-name "~/.local/bin") ":" (getenv "PATH")))

; mode for editing ocaml files
(use-package tuareg)

; lsp client mode
(use-package lsp-mode
:init
; start ocamllsp automatically for ocaml files
:hook ((tuareg-mode . lsp)))
Zed

No manual configuration is necessary! Just install the OCaml extensions for Zed (you should get a pop-up the first time you edit an OCaml file).

For more information on Dune and Package Management, check the Dune docs, in particular the the package management tutorial and the the explanation how it works.

Share Feedback

We are excited to learn from your experience with the Dune nightly, so feel encourage to tell us what you think

Frequently Asked Questions

What is the Dune nightly?

The Dune nightly provides early access to the latest development of Dune without having to wait for a stable release. It's a continuous initiative to involve the community in testing and refining upcoming developments.

Is it stable?

No. The Developer nightly is built from unreleased code on the head of the development branch. If you use the nightly, expect bugs and please report them to ocaml/dune. For a stable release of OCaml, please follow the installation guide on OCaml.org. Binary installations of stable release are available atDune Binary Installer.

Can I install the binary on Windows?

No, not yet. Watch this space for news!

Can I build the nightly of Dune from sources?

Yes. The nightly is just a binary distribution of the latest Dune features.

Check out the installation instructions in the Dune repository on how to do a source build of Dune.

Can I access these features from a version of Dune managed by opam?

Yes, but we can't guarantee that every feature of the nightly will make it as-is into future releases.

To enable these features make sure you are pinning Dune to the development version:

$ opam pin add dune --dev-repo

Manual Installation

In this section you’ll find instructions to manually install the Dune nightly, and verify the installation. This is recommended for advanced users, or if you want to understand where the binaries come from.

Featured Downloads

This is the latest build of the Dune nightly. See the build history section for all past builds.

Installing the binary

After downloading a binary build of Dune, make it executable and place it somewhere reachable by your PATH:

Run

$ tar xzf dune-<arch>.tar.gz
$ mv dune-<arch>/dune ~/.local/bin/

You can verify your installation by running:

$ dune --version
Nightly build 2025-11-25T10:09:55Z, git revision 95431847d306a9b7b94748ec2c2903c989f34c34

Verifying the Dune binary

To ensure trust in the binary distribution, we generate a build certificate associated with the Github Actions pipeline where the binaries are built. Once you download this certificate, you can use the gh tool to verify it with the following command:

$ gh attestation verify ./dune -R ocaml-dune/binary-distribution --bundle attestation.json

Last Month Build History

Here is a list of the 30 latest builds of the Dune nightly.

dune nightly-2026-05-12
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch644e1cad
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-644e1cad
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-644e1cad
dune nightly-2026-05-11
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6437448d
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6437448d
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6437448d
dune nightly-2026-05-10
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch646c97ee
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-646c97ee
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-646c97ee
dune nightly-2026-05-09
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64cb122e
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64cb122e
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64cb122e
dune nightly-2026-05-08
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6408d2ed
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6408d2ed
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6408d2ed
dune nightly-2026-05-07
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64824816
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64824816
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64824816
dune nightly-2026-05-06
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch645fa4ca
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-645fa4ca
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-645fa4ca
dune nightly-2026-05-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch640c8810
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-640c8810
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-640c8810
dune nightly-2026-05-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64630aa5
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64630aa5
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64630aa5
dune nightly-2026-05-04
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch645f4d46
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-645f4d46
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-645f4d46
dune nightly-2026-05-01
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64346222
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64346222
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64346222
dune nightly-2026-04-30
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64cc2082
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64cc2082
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64cc2082
dune nightly-2026-04-29
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64c0f8c5
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64c0f8c5
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64c0f8c5
dune nightly-2026-04-28
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6462d30f
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6462d30f
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6462d30f
dune nightly-2026-04-27
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64241f21
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64241f21
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64241f21
dune nightly-2026-04-26
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64029d55
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64029d55
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64029d55
dune nightly-2026-04-25
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64a6ec61
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64a6ec61
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64a6ec61
dune nightly-2026-04-24
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64875d02
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64875d02
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64875d02
dune nightly-2026-04-23
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64e51b47
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64e51b47
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64e51b47
dune nightly-2026-04-22
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch649cca39
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-649cca39
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-649cca39
dune nightly-2026-04-21
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64504b96
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64504b96
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64504b96
dune nightly-2026-04-17
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64656f6c
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64656f6c
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64656f6c
dune nightly-2026-04-16
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6422b59e
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6422b59e
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6422b59e
dune nightly-2026-04-15
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64e82bb6
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64e82bb6
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64e82bb6
dune nightly-2026-04-14
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6443f34d
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6443f34d
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6443f34d
dune nightly-2026-04-13
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch641c124d
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-641c124d
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-641c124d
dune nightly-2026-04-12
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64db211c
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64db211c
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64db211c
dune nightly-2026-04-11
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64b768eb
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64b768eb
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64b768eb
dune nightly-2026-04-11
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64e2a017
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64e2a017
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64e2a017
dune nightly-2026-04-10
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch642b5923
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-642b5923
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-642b5923