Kuzu V0 136 Full !!better!! May 2026

pip install kuzu==0.1.36 Note: The full functionality is included in the standard pip package as of this version; no separate pip install kuzu-full exists. Download the precompiled binaries from the official GitHub releases page. Look for the asset named: kuzu_v0.136_full_ubuntu22.04.tar.gz (or the appropriate OS version). Unpack it:

If you have been struggling with earlier Kuzu betas or are new to graph databases, downloading is the definitive starting point. Ensure your environment meets the requirements, leverage the recursive query features, and enjoy the speed of a truly optimized embedded graph database. Have you tested Kuzu V0.136 Full in your own projects? Share your benchmarks and use cases in the community forums. For official documentation, visit kuzudb.com/docs/v0.136. kuzu v0 136 full

tar -xzf kuzu_v0.136_full_*.tar.gz cd kuzu_v0.136_full sudo make install docker pull kuzudb/kuzu:v0.136-full docker run -it kuzudb/kuzu:v0.136-full Getting Started: Your First Graph with V0.136 Full Once installed, verify the "full" capabilities by creating a database and running a recursive query. pip install kuzu==0

| Operation | Kuzu v0.128 (beta) | Kuzu v0.136 Full | Improvement | | :--- | :--- | :--- | :--- | | 2-Hop Neighbor Query | 1.4 seconds | 0.9 seconds | | | Bulk Insert (1M edges) | 45 seconds | 32 seconds | 29% faster | | Cold Start Load Time | 12 seconds | 8 seconds | 33% faster | | Recursive Path (5 hops) | Timeout (30s+) | 2.3 seconds | Stable | Unpack it: If you have been struggling with

import kuzu db = kuzu.Database("./test_kuzu_db") conn = kuzu.Connection(db) Create schema and nodes conn.execute("CREATE NODE TABLE Person(name STRING, age INT64, PRIMARY KEY(name))") conn.execute("CREATE REL TABLE Knows(FROM Person TO Person, since INT64)") Insert data conn.execute("CREATE (:Person name: 'Alice', age: 30)") conn.execute("CREATE (:Person name: 'Bob', age: 25)") conn.execute("MATCH (a:Person name: 'Alice'), (b:Person name: 'Bob') CREATE (a)-[:Knows since: 2020]->(b)") Full recursive query (feature unique to v0.136) result = conn.execute("MATCH (a:Person name: 'Alice')-[*1..3]->(b:Person) RETURN b.name") while result.has_next(): print(result.get_next())

The "full" package’s improved query planner makes recursive analytical queries actually usable in production. If you are evaluating kuzu v0 136 full against a potential "Lite" version, understand the trade-offs: