From c188477e512ec8e35eec34ae2ce1a4e5e9b0fcfb Mon Sep 17 00:00:00 2001 From: Gus Date: Thu, 26 Sep 2024 11:03:41 +0800 Subject: [PATCH] docs: update --- readme.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/readme.md b/readme.md index 5e166da..1767c66 100644 --- a/readme.md +++ b/readme.md @@ -40,7 +40,7 @@ 😊 This project provides a **smaller, faster, cleaner GraphRAG**, while remaining the core functionality(see [benchmark](#benchmark) and [issues](#Issues) ). -🎁 Excluding `tests` and prompts, `nano-graphrag` is about **800 lines of code**. +🎁 Excluding `tests` and prompts, `nano-graphrag` is about **1100 lines of code**. 👌 Small yet [**portable**](#Components)(faiss, neo4j, ollama...), [**asynchronous**](#Async) and fully typed. @@ -48,18 +48,18 @@ ## Install -**Install from PyPi** +**Install from source** (recommend) ```shell -pip install nano-graphrag +# clone this repo first +cd nano-graphrag +pip install -e . ``` -**Install from source** +**Install from PyPi** ```shell -# clone this repo first -cd nano-graphrag -pip install -e . +pip install nano-graphrag ```