Install TuringDB Python SDK
Using or using the or using the docker image:If you can it’s better to use TuringDB within a uv project or with pip install to avoid loss in latency performance related to the docker deploymentYou can also install TuringDB using cmake: instructions on Github (link)
uv package manager (you will need to create a project first):pip :Running TuringDB
If you want to launch TuringDB instantly in the CLIIf you want to launch TuringDB in the background as a daemonTo stop TuringDB running in the background:
Example to create and query a graph
Create graph → list graph → create node & create edge → commit → list graphs → match query
Python SDK
Visualise the graph you have created in TuringDB
TuringDB has a built-in visualiser to explore your graphs in the browser. Launch it with the Then open http://localhost:8080 in your browser.
-ui flag:Exploring your graph:
-
Launch the UI with
turingdb -ui - Choose on the top right the graph you want to explore
- Search a node of interest using the search tool or type a CYPHER query
-
Click on nodes to inspect nodes, double click to expand neighbors..etc.

You are done!

