Reputation: 110
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
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