-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
markitdown optional dependency installation #1152
Comments
I have the same issue (but for DocxConverter instead of PdfConverter).
I use a Azure linux pipeline to run these two steps: - bash: |
echo Installing MarkItDown...
pip install 'markitdown[all]'
displayName: 'Install MarkItDown'
- bash: |
echo Using MarkItDown to process markdown files...
markitdown ${{ parameters.pathToFile }} > "$(Build.ArtifactStagingDirectory)/${{ parameters.outputFile }}.md"
displayName: 'Run MarkItDown' So the fix shown above doesn't seem to work. Anyone any thoughts on why? |
hmmm, how do you folks typically install packages with optional dependencies? Indeed, with zsh or fish, quoting is necessary and should be sufficient: You could also write a requirements.txt with:
And then do |
Thanks for the reply. Apparently the issue was in the type of quotes (which it quite often is in Azure Pipelines). |
Initial Error:
Tried
pip install markitdown[all]
Produced Error:
Fix:
pip install 'markitdown[all]'
The text was updated successfully, but these errors were encountered: