Lea
Lea

Reputation: 110

Can't install pyenchant on windows even after I installed enchant manually

I installed pyenchant using "pip install pyenchant" then I installed from the enchant website "ABIWord" and added it to the computer path. Then when I ran "import enchent" from the python console I got:

ImportError: The 'enchant' C library was not found. Please install it via your OS package manager, or use a pre-built binary wheel from PyPI.

What should I do?

Upvotes: 1

Views: 1365

Answers (1)

Mithun Mistry
Mithun Mistry

Reputation: 148

You can visit http://pythonhosted.org/pyenchant/download.html and download the Windows installer which will fix this problem and install the library.

Upvotes: 1

Related Questions