From ead04487fd4290d0f596433834ef90da02cbc736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=91=82=E5=AE=89?= <109305092@g.nccu.edu.tw> Date: Fri, 18 Aug 2023 22:30:55 +0800 Subject: [PATCH] doc: make install from source more clearer (#9433) Description: if just `pip install -e .` it will not install anything, we have to find the right directory to do `pip install -e .` --- docs/snippets/get_started/installation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/snippets/get_started/installation.mdx b/docs/snippets/get_started/installation.mdx index fe5e2ef009..53784c50ee 100644 --- a/docs/snippets/get_started/installation.mdx +++ b/docs/snippets/get_started/installation.mdx @@ -40,7 +40,7 @@ pip install 'langchain[all]' ## From source -If you want to install from source, you can do so by cloning the repo and running: +If you want to install from source, you can do so by cloning the repo and be sure that the directory is `PATH/TO/REPO/langchain/libs/langchain` running: ```bash pip install -e .