ducklake icon indicating copy to clipboard operation
ducklake copied to clipboard

Issue with automatic installation version 1.3.1

Open khoabuiv opened this issue 6 months ago • 2 comments

Hi there,

I am having issues running the installation on version 1.3.1. It looks like the repo is currently not open to the public:

  • Version information:
D SELECT version() AS version;
┌───────────────┐
│    version    │
│    varchar    │
├───────────────┤
│ v1.3.1-dev202 │
└───────────────┘
  • Installation commands:
D INSTALL ducklake FROM 'http://extensions.duckdb.org';
HTTP Error:
Failed to download extension "ducklake" at URL "http://extensions.duckdb.org/9bbabce77c/linux_amd64/ducklake.duckdb_extension.gz" (HTTP 403)

Candidate extensions: "delta", "excel", "azure", "autocomplete", "md"
For more info, visit https://duckdb.org/docs/stable/extensions/troubleshooting?version=9bbabce77c&platform=linux_amd64&extension=ducklake

D INSTALL ducklake FROM core_nightly;
HTTP Error:
Failed to download extension "ducklake" at URL "http://nightly-extensions.duckdb.org/9bbabce77c/linux_amd64/ducklake.duckdb_extension.gz" (HTTP 403)

Candidate extensions: "delta", "excel", "azure", "autocomplete", "md"
For more info, visit https://duckdb.org/docs/stable/extensions/troubleshooting?version=9bbabce77c&platform=linux_amd64&extension=ducklake

khoabuiv avatar May 29 '25 20:05 khoabuiv

confirm same error on 1.2.2

the 403 is probably a 404 so checking the repo actions for some version for which artifact was built

https://github.com/duckdb/ducklake/actions/runs/15306507968/job/43060511297

i find duckdb 1.3.0

install duckdb 1,3,0 foro example with pip install duckdb==1.3.0

then installing this extension works fine

johnny-smitherson avatar May 29 '25 21:05 johnny-smitherson

No binaries are produced yet for 1.3.1 nightly builds The DuckLake extension needs duckdb>=1.3.0, it can't be built for 1.2.2

Tishj avatar May 30 '25 05:05 Tishj