Skip to content

Commit f6df489

Browse files
authored
Specify Node.js 20 requirement for langchain install (#1534)
## Overview Added Node.js version requirement for installation commands. ## Type of change **Type:** Update existing documentation ## Related issues/PRs <!-- Link to related issues, feature PRs, or discussions (if applicable) To automatically close an issue when this PR is merged, use closing keywords: - "closes #123" or "fixes #123" or "resolves #123" For regular references without auto-closing, just use: - "#123" or "See issue #123" Examples: - closes #456 (will auto-close issue #456 when PR is merged) - See #789 for context (will reference but not auto-close issue #789) --> - GitHub issue: - Feature PR: <!-- For LangChain employees, if applicable: --> - Linear issue: - Slack thread: ## Checklist <!-- Put an 'x' in all boxes that apply --> - [x] I have read the [contributing guidelines](README.md) - [x] I have tested my changes locally using `docs dev` - [x] All code examples have been tested and work correctly - [x] I have used **root relative** paths for internal links - [x] I have updated navigation in `src/docs.json` if needed (Internal team members only / optional): Create a preview deployment as necessary using the [Create Preview Branch workflow](https://github.com/langchain-ai/docs/actions/workflows/create-preview-branch.yml) ## Additional notes <!-- Any other information that would be helpful for reviewers -->
1 parent aa61947 commit f6df489

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/oss/langchain/install.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,22 @@ To install the LangChain package:
2525
<CodeGroup>
2626
```bash npm
2727
npm install langchain @langchain/core
28+
# Requires Node.js 20+
2829
```
2930

3031
```bash pnpm
3132
pnpm add langchain @langchain/core
33+
# Requires Node.js 20+
3234
```
3335

3436
```bash yarn
3537
yarn add langchain @langchain/core
38+
# Requires Node.js 20+
3639
```
3740

3841
```bash bun
3942
bun add langchain @langchain/core
43+
# Requires Node.js 20+
4044
```
4145
</CodeGroup>
4246
:::

0 commit comments

Comments
 (0)