From 88a5af2dfb23e9d625b4fe566c94c4e2ca644e23 Mon Sep 17 00:00:00 2001 From: Andrea Pietrobon <32714047+Piero24@users.noreply.github.com> Date: Wed, 5 Mar 2025 21:12:02 +0100 Subject: [PATCH] fix(README): correct pip install command formatting Added missing quotes around `markitdown[all]` in the installation command to ensure proper package resolution by pip. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2563a68..aa59376 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ > [!IMPORTANT] > Breaking changes between 0.0.1 to 0.0.2: -> * Dependencies are now organized into optional feature-groups (further details below). Use `pip install markitdown[all]` to have backward-compatible behavior. +> * Dependencies are now organized into optional feature-groups (further details below). Use `pip install 'markitdown[all]'` to have backward-compatible behavior. MarkItDown is a utility for converting various files to Markdown (e.g., for indexing, text analysis, etc). It supports: @@ -23,7 +23,7 @@ It supports: - Youtube URLs - ... and more! -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