Skip to content

Commit 3ec9230

Browse files
committed
add multi client install
1 parent 81d8ad2 commit 3ec9230

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

getting_started.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,31 @@ and accessing it using the [FalkorDB Python client](/clients) with [Cypher](/cyp
1717
1. **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 %}
2423
pip 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

0 commit comments

Comments
 (0)