Setup OCaml with Dune in Under a Minute

The Dune Developer Preview is an ongoing program that provides early access to new and experimental features in Dune and the broader OCaml Platform with an experimental nightly release

This Dune Install is only an EXPERIMENTAL NIGHTLY RELEASE of Dune

Install Dune

Copy & Install

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

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"
$ dune pkg lock
$ dune exec "$PROJECT"

Editor Configuration

Here is how to configure some popular editors for OCaml using the Dune Developer Preview. Note that it is unnecessary to install ocaml-lsp-server as Dune will install it automatically.

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 Developer Preview, 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 Developer Preview, so just enable it with:

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

Emacs users will need to add the Dune Developer Preview'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 developer preview 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 Developer Preview, so feel encourage to tell us what you think

Frequently Asked Questions

What is the Dune Developer Preview?

The Dune Developer Preview is an ongoing program that provides early access to new and experimental features in Dune and the broader OCaml Platform. It's not limited to a single feature or time period – instead, it's a continuous initiative to involve the community in testing and refining upcoming developments.

While it currently showcases Dune's new package management capabilities, the Developer Preview will continue to introduce and iterate on various features even after the package management system is fully integrated into stable releases.

By participating in the Developer Preview, you'll have the opportunity to try out cutting-edge functionality, provide valuable feedback, and help shape the future of Dune and the OCaml ecosystem. We encourage users to think of the Developer Preview as a persistent "beta channel" for Dune and related tools, always offering a glimpse into what's coming next.

Is it stable?

No. For a stable release of OCaml, please follow the installation guide on OCaml.org. The Developer Preview is an unstable distribution of Dune and, by nature, will always be unstable. However, its features will stabilise over time and move to a stable release of Dune. If you use the Developer Preview, expect bugs and please report them to ocaml/dune.

Does it support Windows?

No, not yet. Watch this space for news!

Can I build the Developer Preview of Dune from sources?

Yes. The only difference from a regular build from source is in a few configuration flags. Please look in the Dune repository for complete instructions on how to do a source build of Dune.

When configuring the build you'll want to enable the following flags:

--pkg-build-progress enable
--lock-dev-tool enable
--bin-dev-tools enable
--portable-lock-dirs enable
Can I access these features from a version of Dune managed by opam?

Yes, but we can't guarantee they will work correctly since the Dune Developer Preview makes some assumptions for package management that aren't supported by opam.

To enable these features make sure you are pinning dune to the development version, and export the following environment variables:

$ opam pin add dune --dev
$ export DUNE_CONFIG__PKG_BUILD_PROGRESS=enabled
$ export DUNE_CONFIG__LOCK_DEV_TOOL=enabled

Manual Installation

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

Featured Downloads

This is the latest release of the Dune Developer Preview. See the release history section for all past releases.

Installing the Binary

After downloading a binary release 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
Dune Developer Preview: build , git revision cc260345db57ab639db6363b2dc89072a1492832

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 Release History

Here is a list of the 30 latest releases of the Dune Developer Preview.

dune nightly-2025-05-30
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch645cbbf9
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-645cbbf9
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-645cbbf9
dune nightly-2025-05-29
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6482bbef
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6482bbef
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6482bbef
dune nightly-2025-05-28
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6402f399
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6402f399
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6402f399
dune nightly-2025-05-27
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64531521
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64531521
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64531521
dune nightly-2025-05-26
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6410d5c4
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6410d5c4
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6410d5c4
dune nightly-2025-05-25
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64307e55
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64307e55
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64307e55
dune nightly-2025-05-24
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64574d25
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64574d25
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64574d25
dune nightly-2025-05-23
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6474a6a3
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6474a6a3
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6474a6a3
dune nightly-2025-05-21
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64bd1d76
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64bd1d76
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64bd1d76
dune nightly-2025-05-19
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64488e96
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64488e96
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64488e96
dune nightly-2025-05-18
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6495dc80
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6495dc80
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6495dc80
dune nightly-2025-05-15
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64b08aa0
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64b08aa0
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64b08aa0
dune nightly-2025-05-14
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64de7549
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64de7549
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64de7549
dune nightly-2025-05-13
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch643b2b80
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-643b2b80
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-643b2b80
dune nightly-2025-05-12
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64c8d09d
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64c8d09d
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64c8d09d
dune nightly-2025-05-11
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64aaa7e9
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64aaa7e9
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64aaa7e9
dune nightly-2025-05-10
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6481fe87
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6481fe87
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6481fe87
dune nightly-2025-05-08
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch646bc42b
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-646bc42b
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-646bc42b
dune nightly-2025-05-07
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64c9e5cd
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64c9e5cd
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64c9e5cd
dune nightly-2025-05-06
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64a0a38c
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64a0a38c
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64a0a38c
dune nightly-2025-05-05
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch640a24c6
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-640a24c6
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-640a24c6
dune nightly-2025-05-04
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6482edd3
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6482edd3
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6482edd3
dune nightly-2025-05-03
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch642ab2ff
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-642ab2ff
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-642ab2ff
dune nightly-2025-05-02
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64da21ca
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64da21ca
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64da21ca
dune nightly-2025-05-01
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch646187bd
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-646187bd
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-646187bd
dune nightly-2025-04-30
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch641ec1fd
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-641ec1fd
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-641ec1fd
dune nightly-2025-04-29
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch6455ed62
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-6455ed62
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-6455ed62
dune nightly-2025-04-28
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch648743f3
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-648743f3
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-648743f3
dune nightly-2025-04-26
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch641a0d36
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-641a0d36
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-641a0d36
dune nightly-2025-04-25
File NameKindOSArchCommitCertificate
dune-aarch64-apple-darwin.tar.gzArchivemacOSaarch64a024ea
dune-x86_64-apple-darwin.tar.gzArchivemacOSx86-64a024ea
dune-x86_64-unknown-linux-musl.tar.gzArchiveLinuxx86-64a024ea