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 (stable)

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

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.jsonl

Last Month Build History

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

dune nightly-2026-03-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64b97cbe
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64b97cbe
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64b97cbe
dune nightly-2026-03-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch648f025c
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-648f025c
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-648f025c
dune nightly-2026-03-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch646ff860
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-646ff860
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-646ff860
dune nightly-2026-03-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64cae07f
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64cae07f
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64cae07f
dune nightly-2026-03-04
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64b20665
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64b20665
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64b20665
dune nightly-2026-03-04
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6417a408
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6417a408
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6417a408
dune nightly-2026-03-04
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64cf569f
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64cf569f
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64cf569f
dune nightly-2026-03-02
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch648cecb4
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-648cecb4
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-648cecb4
dune nightly-2026-03-01
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6440248b
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6440248b
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6440248b
dune nightly-2026-02-27
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch645f6bb5
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-645f6bb5
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-645f6bb5
dune nightly-2026-02-26
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64e7ca9f
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64e7ca9f
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64e7ca9f
dune nightly-2026-02-24
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64e7ca9f
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64e7ca9f
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64e7ca9f
dune nightly-2026-02-23
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch646a7e33
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-646a7e33
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-646a7e33
dune nightly-2026-02-18
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64261c8c
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64261c8c
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64261c8c
dune nightly-2026-02-17
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6498b704
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6498b704
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6498b704
dune nightly-2026-02-15
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6439e74d
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6439e74d
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6439e74d
dune nightly-2026-02-14
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch647a7d49
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-647a7d49
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-647a7d49
dune nightly-2026-02-13
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch643365a8
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-643365a8
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-643365a8
dune nightly-2026-02-12
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64d71ca2
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64d71ca2
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64d71ca2
dune nightly-2026-02-11
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch646bf7dd
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-646bf7dd
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-646bf7dd
dune nightly-2026-02-10
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch644fc007
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-644fc007
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-644fc007
dune nightly-2026-02-08
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6496c1a2
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6496c1a2
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6496c1a2
dune nightly-2026-02-07
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6473b8ec
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6473b8ec
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6473b8ec
dune nightly-2026-02-06
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64d3989a
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64d3989a
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64d3989a
dune nightly-2026-02-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64895477
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64895477
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64895477
dune nightly-2026-02-04
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64830938
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64830938
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64830938
dune nightly-2026-02-03
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch642d96f0
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-642d96f0
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-642d96f0
dune nightly-2026-02-02
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64bc9c36
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64bc9c36
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64bc9c36
dune nightly-2026-02-01
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64f07c17
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64f07c17
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64f07c17
dune nightly-2026-01-31
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64640e3e
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64640e3e
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64640e3e