From 61c3161c9996f8e3719a096707e2fdfcd61487b5 Mon Sep 17 00:00:00 2001 From: FAQ Bot Date: Sat, 28 Feb 2026 09:41:15 +0000 Subject: [PATCH] NEW: libduckdb.so: cannot open shared object file error when running Bruin wi --- ...2882b_libduckdb-lib-missing-wsl-windows.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 _questions/data-engineering-zoomcamp/module-4/090_f1e752882b_libduckdb-lib-missing-wsl-windows.md diff --git a/_questions/data-engineering-zoomcamp/module-4/090_f1e752882b_libduckdb-lib-missing-wsl-windows.md b/_questions/data-engineering-zoomcamp/module-4/090_f1e752882b_libduckdb-lib-missing-wsl-windows.md new file mode 100644 index 0000000..d939463 --- /dev/null +++ b/_questions/data-engineering-zoomcamp/module-4/090_f1e752882b_libduckdb-lib-missing-wsl-windows.md @@ -0,0 +1,22 @@ +--- +id: f1e752882b +question: 'libduckdb.so: cannot open shared object file error when running Bruin with + DuckDB on Windows 10 / WSL Ubuntu 24.04' +sort_order: 90 +--- + +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: + +```bash +# 1. Download the Linux AMD64 shared library +wget https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-linux-amd64.zip + +# 2. Unzip the package +unzip libduckdb-linux-amd64.zip + +# 3. Move the library to a standard system location +sudo mv libduckdb.so /usr/local/lib/ + +# 4. Refresh the library cache +sudo ldconfig +``` \ No newline at end of file