You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting_started/installation.md
+22-7Lines changed: 22 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -6,23 +6,27 @@ Follow this guide to install and set up **TigerGraphX** in your environment.
6
6
7
7
## Requirements
8
8
9
-
This project requires **Python 3.10, 3.11 or 3.12** and **TigerGraph**. Ensure you meet the following prerequisites before proceeding:
9
+
This project requires **Python 3.10, 3.11, or 3.12** and **TigerGraph 4.1 or later**. Ensure you meet the following prerequisites before proceeding:
10
10
11
11
### **1. Python**
12
-
- Please ensure Python 3.10, 3.11 or 3.12 is installed on your system.
12
+
13
+
- Ensure Python 3.10, 3.11, or 3.12 is installed on your system.
13
14
- You can download and install it from the [official Python website](https://www.python.org/downloads/).
14
15
15
16
### **2. TigerGraph**
16
17
17
-
TigerGraph is required for this project and can be set up in one of the following ways:
18
+
TigerGraph **version 4.1 or **is required for this project. You can set up TigerGraph in one of the following ways:
18
19
19
20
-**TigerGraph DB**: Install and configure a local instance of TigerGraph.
20
21
-**TigerGraph Cloud**: Use a cloud-hosted instance of TigerGraph.
21
-
-**TigerGraph Docker**: Use a Docker container to run TigerGraph.
22
+
-**TigerGraph Docker**: Run TigerGraph using a Docker container.
23
+
24
+
> ⚠️ **Minimum Required Version: TigerGraph 4.1**
25
+
> ✅ **Recommended Version: TigerGraph 4.2+** to enable **TigerVector** support and advanced features such as hybrid retrieval.
22
26
23
-
It is recommended to use **TigerGraph LTS (Long-Term Support) Versions**, which can be downloaded from the [TigerGraph Downloads page](https://dl.tigergraph.com/). To enable support for **TigerVector** and leverage advanced features like hybrid retrieval, ensure you are using **TigerGraph 4.2 or above**.
27
+
We recommend using **TigerGraph LTS (Long-Term Support) versions**, available from the [TigerGraph Downloads page](https://dl.tigergraph.com/).
24
28
25
-
Refer to the official [TigerGraph Documentation](https://docs.tigergraph.com/home/) for detailed installation and configuration instructions.
29
+
For installation and configuration guidance, refer to the official [TigerGraph Documentation](https://docs.tigergraph.com/home/).
26
30
27
31
---
28
32
@@ -93,11 +97,22 @@ poetry show --with dev
93
97
94
98
This ensures all required dependencies (including optional ones) are successfully installed.
95
99
100
+
101
+
#### **Activate the Virtual Environment**
102
+
103
+
Activate the environment using:
104
+
105
+
```bash
106
+
eval$(poetry env activate)
107
+
```
108
+
109
+
For more information about managing virtual environments in Poetry, please refer to the official documentation: [Managing Environments](https://python-poetry.org/docs/managing-environments/).
110
+
96
111
---
97
112
98
113
## Next Steps
99
114
100
-
-[TigerGraphX Quick Start](quick_start_graph.ipynb): Learn how to build your first graph with TigerGraphX.
115
+
-[TigerGraphX Quick Start](quick_start_graph.md): Learn how to build your first graph with TigerGraphX.
Copy file name to clipboardExpand all lines: docs/getting_started/quick_start_vector.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -373,7 +373,7 @@ To clear the data and completely remove the graph—including schema, loading jo
373
373
374
374
Now that you've learned how to use TigerGraph for storing both graph data and vectors, you can dive into more advanced features of TigerGraphX:
375
375
376
-
-[GraphRAG Overview](../graphrag/graphrag_overview.md): Learn about integrating graphs with LLMs.
376
+
-[TigerGraph Quick Start Guide for Graph and Vector Storage](quick_start_both.md): Quickly get started with TigerGraph for storing both graph and vector data.
377
377
-[API Reference](../reference/introduction.md): Dive deeper into TigerGraphX APIs.
Copy file name to clipboardExpand all lines: docs/reference/01_core/graph.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -157,7 +157,7 @@ Running the command will create a graph using the user-defined schema if it does
157
157
158
158
---
159
159
160
-
**Alternative Connection Setup Methods**
160
+
### Alternative Connection Setup Methods
161
161
162
162
An alternative way to set up the connection is by directly assigning the `tigergraph_connection_config` parameter. Suppose we have already defined the same `graph_schema` as before. Now let's define the connection. Like the schema, the connection can be defined using a Python dictionary, YAML file, or JSON file. Below are examples of defining the same connection using all three approaches:
0 commit comments