From ebe2684b3d06429365e6c2b3a3fe50f0b012fd45 Mon Sep 17 00:00:00 2001 From: lentil32 Date: Mon, 14 Apr 2025 01:29:16 +0900 Subject: [PATCH] chore: fix typo in README.md (#1175) * chore: fix typo in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b807a6a..0433a66 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ To install MarkItDown, use pip: `pip install 'markitdown[all]'`. Alternatively, ```bash git clone git@github.com:microsoft/markitdown.git cd markitdown -pip install -e packages/markitdown[all] +pip install -e 'packages/markitdown[all]' ``` ## Usage @@ -73,7 +73,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.