I'm having trouble getting a Python module called PyEnchant on my Mac. I am using Python 2.7. When I open and run setup.py pyenchant file, I get the following error message:
Traceback (most recent call last): File "/Applications/Python 2.7/pyenchant-1.6.5/setup.py", line 195, in <module> import enchant File "/Applications/Python 2.7/pyenchant-1.6.5/enchant/__init__.py", line 90, in <module> from enchant import _enchant as _e File "/Applications/Python 2.7/pyenchant-1.6.5/enchant/_enchant.py", line 133, in <module> raise ImportError("enchant C library not found") ImportError: enchant C library not found
I tried to run the .dmg file available on the pyenchant website. The installation processes proceed without error messages, but as soon as they are completed, I still cannot import pyenchant into Python and cannot find the installed software anywhere in the Finder.
I also tried using the .egg installer, which opened a Python window with the letters "PK" written at the top in the black capitals. I do not know what it means.
As you can probably say that I'm not an experienced Python user, so any help on this is greatly appreciated.
source share