Skip to content

Commit c440b4c

Browse files
authored
Merge pull request #48 from TigerGraph-DevLabs/feature/tigergraph_api
docs: modify installation.md
2 parents 49a2199 + 07c14be commit c440b4c

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
lines changed

docs/getting_started/installation.md

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,27 @@ Follow this guide to install and set up **TigerGraphX** in your environment.
66

77
## Requirements
88

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:
1010

1111
### **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.
1314
- You can download and install it from the [official Python website](https://www.python.org/downloads/).
1415

1516
### **2. TigerGraph**
1617

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:
1819

1920
- **TigerGraph DB**: Install and configure a local instance of TigerGraph.
2021
- **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.
2226
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/).
2428

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/).
2630

2731
---
2832

@@ -93,11 +97,22 @@ poetry show --with dev
9397

9498
This ensures all required dependencies (including optional ones) are successfully installed.
9599

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+
96111
---
97112

98113
## Next Steps
99114

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.
101116

102117
---
103118

docs/getting_started/quick_start_vector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ To clear the data and completely remove the graph—including schema, loading jo
373373

374374
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:
375375

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.
377377
- [API Reference](../reference/introduction.md): Dive deeper into TigerGraphX APIs.
378378

379379
---

docs/reference/01_core/graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Running the command will create a graph using the user-defined schema if it does
157157

158158
---
159159

160-
**Alternative Connection Setup Methods**
160+
### Alternative Connection Setup Methods
161161

162162
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:
163163

0 commit comments

Comments
 (0)