From e04ac5dd7e0eb75b43b7bd53b2388029e9dc6ba1 Mon Sep 17 00:00:00 2001 From: LHMQ878 <72402929@cityu-dg.edu.cn> Date: Sun, 26 Jul 2026 18:53:53 +0800 Subject: [PATCH] docs: Use double quotes for pip extras so commands work in cmd.exe --- README.md | 8 ++++---- packages/markitdown/README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 37be2d1d0..ec8d8a926 100644 --- a/README.md +++ b/README.md @@ -60,12 +60,12 @@ conda activate markitdown ## Installation -To install MarkItDown, use pip: `pip install 'markitdown[all]'`. Alternatively, you can install it from the source: +To install MarkItDown, use pip: `pip install "markitdown[all]"`. Alternatively, you can install it from the source: ```bash git clone git@github.com:microsoft/markitdown.git cd markitdown -pip install -e 'packages/markitdown[all]' +pip install -e "packages/markitdown[all]" ``` ## Usage @@ -92,7 +92,7 @@ cat path-to-file.pdf | markitdown MarkItDown has optional dependencies for activating various file formats. Earlier in this document, we installed all optional dependencies with the `[all]` option. However, you can also install them individually for more control. For example: ```bash -pip install 'markitdown[pdf, docx, pptx]' +pip install "markitdown[pdf, docx, pptx]" ``` will install only the dependencies for PDF, DOCX, and PPTX files. @@ -163,7 +163,7 @@ See [`packages/markitdown-ocr/README.md`](packages/markitdown-ocr/README.md) for [Azure Content Understanding](https://learn.microsoft.com/azure/ai-services/content-understanding/) provides higher-quality conversion with structured field extraction (YAML front matter), multi-modal support (documents, images, audio, video), and configurable analyzers. -Install: `pip install 'markitdown[az-content-understanding]'` +Install: `pip install "markitdown[az-content-understanding]"` #### When to use Content Understanding diff --git a/packages/markitdown/README.md b/packages/markitdown/README.md index 0b6b67b1e..6a601bffe 100644 --- a/packages/markitdown/README.md +++ b/packages/markitdown/README.md @@ -13,7 +13,7 @@ From PyPI: ```bash -pip install 'markitdown[all]' +pip install "markitdown[all]" ``` From source: @@ -21,7 +21,7 @@ From source: ```bash git clone git@github.com:microsoft/markitdown.git cd markitdown -pip install -e 'packages/markitdown[all]' +pip install -e "packages/markitdown[all]" ``` ## Usage