⌘+k ctrl+k
1.1.3 (stable)
Search Shortcut cmd + k | ctrl + k
Raspberry Pi

DuckDB can be built for Raspberry Pi.

On 32-bit Raspberry Pi boards, you need to add the -latomic link flag. As extensions are not distributed for this platform, it's recommended to also include them in the build. For example:

mkdir build
cd build
cmake .. \
    -DCORE_EXTENSIONS="httpfs;json;parquet" \
    -DDUCKDB_EXTRA_LINK_FLAGS="-latomic"
make -j4