From 3e6e7a704d94482fb71fdd40a62a4cf9f9394730 Mon Sep 17 00:00:00 2001 From: Vardhaman <83634399+cyai@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:17:26 +0530 Subject: [PATCH] docs: remove unnecessary args from the pip install (#19823) **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:** #19820 **Dependencies:** No dependency change requierd **Twitter handle:** [@vardhaman722](https://twitter.com/vardhaman722) --- docs/docs/integrations/document_loaders/mediawikidump.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/integrations/document_loaders/mediawikidump.ipynb b/docs/docs/integrations/document_loaders/mediawikidump.ipynb index 85256e6824c..928c25a0d7b 100644 --- a/docs/docs/integrations/document_loaders/mediawikidump.ipynb +++ b/docs/docs/integrations/document_loaders/mediawikidump.ipynb @@ -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" ] }, {