From fe538d4bcbecf2eecb8a0cc2ace548908d24e608 Mon Sep 17 00:00:00 2001 From: Mingqi Hu Date: Tue, 3 Dec 2024 09:36:13 +0800 Subject: [PATCH] docs: Use edit mode as default to install template (#2590) Small change to install the dependencies with `edit` mode so that users or freshman can see the effect immediately when they change the template code. As below, `pip install -e .` It's very good to evaluate how agent works and easy to test & re-develop! --------- Signed-off-by: Mingqi Hu Co-authored-by: William FH <13333726+hinthornw@users.noreply.github.com> --- docs/docs/tutorials/langgraph-platform/local-server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorials/langgraph-platform/local-server.md b/docs/docs/tutorials/langgraph-platform/local-server.md index 9c8e3ea9f..db7f53fea 100644 --- a/docs/docs/tutorials/langgraph-platform/local-server.md +++ b/docs/docs/tutorials/langgraph-platform/local-server.md @@ -35,10 +35,10 @@ Create a new app from the `react-agent` template. This template is a simple agen ## Install Dependencies -In the root of your new LangGraph app, install the dependencies: +In the root of your new LangGraph app, install the dependencies in `edit` mode so your local changes are used by the server: ```shell -pip install . +pip install -e . ``` ## Create a `.env` file