Skip to content Skip to sidebar Skip to footer

Unicodedecodeerror Installing Ebooklib 0.15 For Textract 1.6.1

I'm trying to install textract using the command of pip install textract and I'm getting the following error. C:\Users\HP\PycharmProjects\CVParser\venv\Scripts>pip install textr

Solution 1:

The version of textract on PyPi has EbookLib==0.15 as a requirement, so if you desperately want that version, then you will have to donwload the Ebooklib source from github and edit the README.md to not contain unicode characters anymore.

A simpler approach however would be to download the latest version of textract from its github page, since the requirement for Ebooklib has been changed to EbookLib==0.16 which solves the issue.

To do this, simply download the source code, chagne into the directory and run

pip install .

Note: Since you are using a venv, make sure, that you are running it with the corresponidng pip version

Post a Comment for "Unicodedecodeerror Installing Ebooklib 0.15 For Textract 1.6.1"