File tree Expand file tree Collapse file tree 1 file changed +22
-5
lines changed
Expand file tree Collapse file tree 1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,31 @@ and accessing it using the [FalkorDB Python client](/clients) with [Cypher](/cyp
17171 . ** FalkorDB Instance** : Set up FalkorDB (on-prem or cloud).
1818 - [ Run FalkorDB Docker] ( https://hub.docker.com/r/falkordb/falkordb/ )
1919 - [ Create a FalkorDB Cloud Instance] ( https://app.falkordb.cloud/signup )
20- 2 . ** Python Installed** : Ensure you have Python 3.8+ installed.
21- 3 . ** Install FalkorDB Python Client** :
20+ 2 . ** Install FalkorDB Client** :
2221
23- {% capture shell_0 %}
22+ {% capture pypi_0 %}
2423pip install falkordb
2524{% endcapture %}
26-
27- {% include code_tabs.html id="install_tabs" shell=shell_0 %}
25+
26+ {% capture npm_0 %}
27+ npm install falkordb
28+ {% endcapture %}
29+
30+ {% capture cargo_0 %}
31+ cargo add falkordb
32+ {% endcapture %}
33+
34+ {% capture maven_0 %}
35+ <dependencies >
36+ <dependency>
37+ <groupId>com.falkordb</groupId>
38+ <artifactId>jfalkordb</artifactId>
39+ <version>0.4.0</version>
40+ </dependency>
41+ </dependencies >
42+ {% endcapture %}
43+
44+ {% include code_tabs.html id="install_tabs" shell=pypi_0 shell=npm_0 shell=cargo_0 shell=maven_0 %}
2845
2946---
3047
You can’t perform that action at this time.
0 commit comments