Skip to content

Commit

Permalink
Merge pull request #37 from mbernier/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulnyk authored Jan 8, 2025
2 parents 5ec0b1e + 116a1ea commit cf35053
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,44 @@ Additional it also calculates the Degree of each node, and Communities of nodes,
**[Here is a Medium article explaining the method in detail ](https://medium.com/towards-data-science/how-to-convert-any-text-into-a-graph-of-concepts-110844f22a1a)**


---
## Installing Locally

### Prerequisites
- Python 3.11 or higher
- Poetry (recommended) or pip

### Using Poetry (Recommended)
1. Clone the repository:
```bash
git clone https://github.com/rahulnyk/knowledge_graph.git
cd knowledge_graph
```

2. Install dependencies and the package:
```bash
poetry install
```

### Using pip
1. Clone the repository:
```bash
git clone https://github.com/rahulnyk/knowledge_graph.git
cd knowledge_graph
```

2. Install in editable mode:
```bash
pip install -e .
```

### Verifying Installation
After installation, you can verify everything is working by running the tests:
```bash
poetry run pytest
# or if using pip:
pytest
```

---
## Tech Stack
Expand Down

0 comments on commit cf35053

Please sign in to comment.