Skip to content

Commit 3d5f56a

Browse files
authored
docs: add quotes to unstructured[local-inference] install instructions (langchain-ai#1208)
### Summary Corrects the install instruction for local inference to `pip install "unstructured[local-inference]"`
1 parent 0472318 commit 3d5f56a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/ecosystem/unstructured.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This page is broken into two parts: installation and setup, and then references
1010
`unstructured` wrappers.
1111

1212
## Installation and Setup
13-
- Install the Python SDK with `pip install unstructured[local-inference]`
13+
- Install the Python SDK with `pip install "unstructured[local-inference]"`
1414
- Install the following system dependencies if they are not already available on your system.
1515
Depending on what document types you're parsing, you may not need all of these.
1616
- `libmagic-dev`

docs/modules/document_loaders/examples/unstructured_file.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"outputs": [],
1818
"source": [
1919
"# # Install package\n",
20-
"!pip install unstructured[local-inference]\n",
20+
"!pip install \"unstructured[local-inference]\"\n",
2121
"!pip install \"detectron2@git+https://github.com/facebookresearch/detectron2.git@v0.6#egg=detectron2\"\n",
2222
"!pip install layoutparser[layoutmodels,tesseract]"
2323
]
@@ -166,7 +166,7 @@
166166
"Processing PDF documents works exactly the same way. Unstructured detects the file type and extracts the same types of `elements`. "
167167
]
168168
},
169-
169+
170170
{
171171
"cell_type": "code",
172172
"execution_count": 1,
@@ -221,7 +221,7 @@
221221
"source": [
222222
"docs[:5]"
223223
]
224-
},
224+
},
225225
{
226226
"cell_type": "code",
227227
"execution_count": null,

0 commit comments

Comments
 (0)