Skip to content

Commit

Permalink
docs: remove unnecessary args from the pip install (langchain-ai#19823)
Browse files Browse the repository at this point in the history
**Description:** An additional `U` argument was added for the
instructions to install the pip packages for the MediaWiki Dump Document
loader which was leading to error in installing the package. Removing
the argument fixed the command to install.

**Issue:** langchain-ai#19820 
**Dependencies:** No dependency change requierd
**Twitter handle:** [@vardhaman722](https://twitter.com/vardhaman722)
  • Loading branch information
cyai authored and marlenezw committed Apr 2, 2024
1 parent eb8e832 commit 09320e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/docs/integrations/document_loaders/mediawikidump.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"outputs": [],
"source": [
"# mediawiki-utilities supports XML schema 0.11 in unmerged branches\n",
"%pip install --upgrade --quiet U git+https://github.com/mediawiki-utilities/python-mwtypes@updates_schema_0.11\n",
"%pip install --upgrade --quiet git+https://github.com/mediawiki-utilities/python-mwtypes@updates_schema_0.11\n",
"# mediawiki-utilities mwxml has a bug, fix PR pending\n",
"%pip install --upgrade --quiet U git+https://github.com/gdedrouas/python-mwxml@xml_format_0.11\n",
"%pip install --upgrade --quiet U mwparserfromhell"
"%pip install --upgrade --quiet git+https://github.com/gdedrouas/python-mwxml@xml_format_0.11\n",
"%pip install --upgrade --quiet mwparserfromhell"
]
},
{
Expand Down

0 comments on commit 09320e5

Please sign in to comment.