1

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?

Lea
  • 110
  • 7

1 Answers1

1

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

Mithun Mistry
  • 138
  • 2
  • 7