biqqles / textricate

Export messages from Textra to XML
BSD Zero Clause License
5 stars 1 forks source link

"No module named 'ftfy'" #4

Closed ratchetchan closed 4 years ago

ratchetchan commented 4 years ago

I have installed Python, installed pip, installed ftfy both from the server and from an actual file, added the file ftfy was installed in to path, and still textricate produces this error.

biqqles commented 4 years ago

Hi, the most likely cause of this is that ftfy is being installed to a different Python installation than is being used to run textricate. If you try to run import ftfy yourself with the same Python command/executable you are using to run textricate does it give the same error? If so, ensure pip is running using that same Python interpreter (e.g. python -m pip) and try installing ftfy again. If all else fails, extracting ftfy's wheel package manually (it's just a zip file) into the same directory as textricate should also work.

biqqles commented 4 years ago

Closing due to inactivity.