Kuzu V0 136 Full _top_
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:
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. kuzu v0 136 full
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. pip install kuzu==0
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()) Unpack it: tar -xzf kuzu_v0
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: