Skip to content

Commit

Permalink
docs[patch]: update installation with core and community (#14577)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Dec 12, 2023
1 parent b54a1a3 commit 8a126c5
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/docs/get_started/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -61,4 +75,4 @@ If not using LangChain, install with:

```bash
pip install langsmith
```
```

0 comments on commit 8a126c5

Please sign in to comment.