Search Shortcut cmd + k | ctrl + k

DuckDB Preview (Nightly) Installation

Command Line Interface (CLI)

Platform Architecture Download
Linux x86_64 Download
Linux arm64 Download
macOS arm64 / x86_64 Download
Windows arm64 / x86_64 Download

Python

pip install duckdb --pre --upgrade

R

install.packages("pak")
pak::pak("duckdb/duckdb-r")

Java

Maven:

<dependencies>
  <dependency>
    <groupId>org.duckdb</groupId>
    <artifactId>duckdb_jdbc</artifactId>
    <version>1.5.0-SNAPSHOT</version>
  </dependency>
</dependencies>
<repositories>
  <repository>
    <id>oss-sonatype</id>
    <name>oss-sonatype</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

Direct Download (JAR)

Node.js

npm install duckdb@next

The nightly release of the Node.js driver installs the old (deprecated) Node.js driver and not DuckDB Node Neo. For the Node Neo driver, the nightly release is currently not available.

C / C++

Platform Architecture Download
Linux x86_64 Download
Linux arm64 Download
macOS arm64 / x86_64 Download
Windows arm64 / x86_64 Download

ODBC

Platform Architecture Download
Linux x86_64 Download
Linux arm64 Download
macOS arm64 / x86_64 Download
Windows arm64 / x86_64 Download