From 8a126c5d04046f3e4bef73091ecd9e1bc9a7e32d Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Mon, 11 Dec 2023 18:31:25 -0800 Subject: [PATCH] docs[patch]: update installation with core and community (#14577) --- docs/docs/get_started/installation.mdx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/docs/get_started/installation.mdx b/docs/docs/get_started/installation.mdx index 5dac8bb165..aaee3c247c 100644 --- a/docs/docs/get_started/installation.mdx +++ b/docs/docs/get_started/installation.mdx @@ -29,6 +29,20 @@ If you want to install from source, you can do so by cloning the repo and be sur pip install -e . ``` +## LangChain community +The `langchain-community` package contains third-party integrations. It is automatically installed by `langchain`, but can also be used separately. Install with: + +```bash +pip install langchain-community +``` + +## LangChain core +The `langchain-core` package contains base abstractions that the rest of the LangChain ecosystem uses, along with the LangChain Expression Language. It is automatically installed by `langchain`, but can also be used separately. Install with: + +```bash +pip install langchain-core +``` + ## LangChain experimental The `langchain-experimental` package holds experimental LangChain code, intended for research and experimental uses. Install with: @@ -61,4 +75,4 @@ If not using LangChain, install with: ```bash pip install langsmith -``` \ No newline at end of file +```