diff --git a/README.md b/README.md index df7189d..cc27a38 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,14 @@ or from the source ```sh pip install -e . ``` +# Homebrew Installation (for macOS users) +If you're on macOS, you can install markitdown via Homebrew: +```sh +brew install markitdown +``` + +This provides a convenient method to install and run markitdown directly from the terminal, with no need to install Python or other dependencies. # Usage The API is simple: diff --git a/src/markitdown/__main__.py b/src/markitdown/__main__.py index 6c8a672..449aec3 100644 --- a/src/markitdown/__main__.py +++ b/src/markitdown/__main__.py @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: MIT import sys -from ._markitdown import MarkItDown +from markitdown._markitdown import MarkItDown def main(): @@ -40,3 +40,4 @@ EXAMPLE: if __name__ == "__main__": main() +