Skip to content

Commit 81eb85c

Browse files
Add: Fix libduckdb.so missing on WSL/Windows
Closes #208
1 parent a500273 commit 81eb85c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
id: f1e752882b
3+
question: 'libduckdb.so: cannot open shared object file error when running Bruin with
4+
DuckDB on Windows 10 / WSL Ubuntu 24.04'
5+
sort_order: 91
6+
---
7+
8+
The error occurs because the system cannot locate the DuckDB shared library. Resolve by downloading and moving the library to the system's library path:
9+
10+
```bash
11+
# 1. Download the Linux AMD64 shared library
12+
wget https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-linux-amd64.zip
13+
14+
# 2. Unzip the package
15+
unzip libduckdb-linux-amd64.zip
16+
17+
# 3. Move the library to a standard system location
18+
sudo mv libduckdb.so /usr/local/lib/
19+
20+
# 4. Refresh the library cache
21+
sudo ldconfig
22+
```

0 commit comments

Comments
 (0)