Skip to content

Commit 856a5aa

Browse files
committed
Update nightlies page
1 parent 9cff5c5 commit 856a5aa

File tree

1 file changed

+23
-17
lines changed

1 file changed

+23
-17
lines changed

install/preview.md

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ redirect_from:
1818

1919
The preview (nightly) builds provide the latest development version of DuckDB. As such, they are constantly in flux and they are less suitable for production use than the stable releases of DuckDB. You should only use these releases if you are looking for [recent bugfixes](https://github.com/duckdb/duckdb/pulls?q=is%3Apr+is%3Amerged) or optimizations.
2020

21-
### Command Line Interface (CLI)
21+
## Command Line Interface (CLI)
2222

2323
| Platform | Architecture | Download |
2424
| -------- | ------------------ | ------------------------------------------------------------------------------- |
@@ -27,28 +27,35 @@ The preview (nightly) builds provide the latest development version of DuckDB. A
2727
| macOS | `arm64` / `x86_64` | [Download](https://artifacts.duckdb.org/latest/duckdb-binaries-osx.zip) |
2828
| Windows | `arm64` / `x86_64` | [Download](https://artifacts.duckdb.org/latest/duckdb-binaries-windows.zip) |
2929

30-
### Python
30+
## Python
3131

3232
```batch
3333
pip install duckdb --pre --upgrade
3434
```
3535

36-
### R
36+
## Java
3737

38-
```R
39-
install.packages("pak")
40-
pak::pak("duckdb/duckdb-r")
41-
```
38+
In the [`duckdb-java` repository](https://github.com/duckdb/duckdb-java), list the [successful runs on the `Java JDBC` workflow](https://github.com/duckdb/duckdb-java/actions?query=workflow%3A%22Java+JDBC%22+is%3Asuccess). In the workflow output, you can find the artifacts such as `java-linux-aarch64.zip` and `java-osx-universal.zip`.
4239

43-
### Node.js
40+
## Node.js
4441

4542
```batch
4643
npm install duckdb@next
4744
```
4845

4946
Note: 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.
5047

51-
### C / C++
48+
## ODBC
49+
50+
| Platform | Architecture | Download |
51+
| -------- | ------------------ | -------------------------------------------------------------------------------- |
52+
| Linux | `arm64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-linux-arm64.zip) |
53+
| Linux | `x86_64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-linux-amd64.zip) |
54+
| macOS | `arm64` / `x86_64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-osx-universal.zip) |
55+
| Windows | `arm64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-windows-arm64.zip) |
56+
| Windows | `x86_64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-windows-amd64.zip) |
57+
58+
## C / C++
5259

5360
| Platform | Architecture | Download |
5461
| -------- | ------------------ | ------------------------------------------------------------------------------- |
@@ -57,12 +64,11 @@ Note: The nightly release of the Node.js driver installs the old (deprecated) No
5764
| macOS | `arm64` / `x86_64` | [Download](https://artifacts.duckdb.org/latest/duckdb-binaries-osx.zip) |
5865
| Windows | `arm64` / `x86_64` | [Download](https://artifacts.duckdb.org/latest/duckdb-binaries-windows.zip) |
5966

60-
### ODBC
67+
## R
6168

62-
| Platform | Architecture | Download |
63-
| -------- | ------------------ | -------------------------------------------------------------------------------- |
64-
| Linux | `arm64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-linux-arm64.zip) |
65-
| Linux | `x86_64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-linux-amd64.zip) |
66-
| macOS | `arm64` / `x86_64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-osx-universal.zip) |
67-
| Windows | `arm64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-windows-arm64.zip) |
68-
| Windows | `x86_64` | [Download](https://artifacts.duckdb.org/duckdb-odbc/main/odbc-windows-amd64.zip) |
69+
In R, run the following to install the latest DuckDB from source:
70+
71+
```R
72+
install.packages("pak")
73+
pak::pak("duckdb/duckdb-r")
74+
```

0 commit comments

Comments
 (0)