Skip to content

Commit ebe2684

Browse files
authored
chore: fix typo in README.md (#1175)
* chore: fix typo in README.md
1 parent 8576f1d commit ebe2684

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To install MarkItDown, use pip: `pip install 'markitdown[all]'`. Alternatively,
4646
```bash
4747
git clone [email protected]:microsoft/markitdown.git
4848
cd markitdown
49-
pip install -e packages/markitdown[all]
49+
pip install -e 'packages/markitdown[all]'
5050
```
5151

5252
## Usage
@@ -73,7 +73,7 @@ cat path-to-file.pdf | markitdown
7373
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:
7474

7575
```bash
76-
pip install markitdown[pdf, docx, pptx]
76+
pip install 'markitdown[pdf, docx, pptx]'
7777
```
7878

7979
will install only the dependencies for PDF, DOCX, and PPTX files.

0 commit comments

Comments
 (0)