Skip to content

Commit c2fafee

Browse files
docs: update installation commands across notebooks and README
- Modified pip installation commands in various notebooks and the README to include `langchain` and `langchain-community` for improved functionality and consistency.
1 parent 3be7eb5 commit c2fafee

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Let's build an agent that answers questions about climate change, based on the 2
9494

9595
Before starting let's install the required libraries:
9696
```sh
97-
pip install langchain-openai tiktoken "pypdf<=3.17.0"
97+
pip install langchain langchain-community langchain-openai tiktoken "pypdf<=3.17.0"
9898
```
9999

100100

‎docs/getting_started/quickstart/quickstart_llm.ipynb‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@
6565
"id": "aqlTkiw4qyNM"
6666
},
6767
"outputs": [],
68-
"source": "%pip install langchain langchain-openai langchain-community pypdf faiss-cpu openai tiktoken"
68+
"source": [
69+
"%pip install langchain langchain-community langchain-openai pypdf faiss-cpu openai tiktoken"
70+
]
6971
},
7072
{
7173
"cell_type": "markdown",

‎docs/integrations/avid/avid-integration-llm.ipynb‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"outputs": [],
5252
"source": [
53-
"%pip install langchain-openai pypdf faiss-cpu openai tiktoken avidtools"
53+
"%pip install langchain langchain-community langchain-openai pypdf faiss-cpu tiktoken avidtools"
5454
]
5555
},
5656
{

‎docs/integrations/mlflow/mlflow-llm-example.ipynb‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
},
7373
"outputs": [],
7474
"source": [
75-
"%pip install langchain langchain-openai openai \"pypdf<=3.17.0\" faiss-cpu tiktoken pyngrok -q"
75+
"%pip install langchain langchain-community langchain-openai \"pypdf<=3.17.0\" faiss-cpu tiktoken pyngrok -q"
7676
]
7777
},
7878
{

‎docs/reference/notebooks/LLM_Description_Product.ipynb‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"outputs": [],
5151
"source": [
5252
"%pip install \"giskard[llm]\" --upgrade\n",
53-
"%pip install langchain-openai --upgrade"
53+
"%pip install langchain langchain-community langchain-openai --upgrade"
5454
]
5555
},
5656
{

‎docs/reference/notebooks/LLM_QA_Google.ipynb‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
},
7373
"outputs": [],
7474
"source": [
75-
"!pip install langchain-openai tiktoken lancedb"
75+
"!pip install langchain langchain-community langchain-openai tiktoken"
7676
]
7777
},
7878
{

0 commit comments

Comments
 (0)