Closed yoli1888 closed 1 year ago
Turns out zsh uses square brackets for globbing / pattern matching.
So I try again with:
pip install 'deep-translator[pdf]' WARNING: deep-translator 1.10.0 does not provide the extra 'pdf'
Appreciate if python examples can be provided to verify if deep-translator can process pdf/docx file.
Hey @yoli1888, thanks for opening this issue. Indeed it was a bug in the way I was using poetry. I released a hotfix v1.10.1
So if you want to use extras, you have to install options:
- pip example -> pip install deep-translator[pdf]
- poetry example -> poetry install deep-translator --extras "pdf"
Description
Attempt to install deep-translator extras after installing deep-translator 1.10.0: [docx] and [pdf]
What I Did