PyEnchant raises WinError 193 loading when using Python 3.3.4

PyEnchant throws an error when trying to import it. I installed and uninstalled it using both pip and exe they provide on their site.

Just an example using Python using the command line:

    >>> import enchant
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "C:\Python33\lib\site-packages\enchant\__init__.py", line 92, in <module>

        from enchant import _enchant as _e
      File "C:\Python33\lib\site-packages\enchant\_enchant.py", line 102, in <module>
        raise WinError()
    OSError: [WinError 193] <no description>

      

+3


source to share


1 answer


This is because the PyEnchant package includes a library that runs for 32-bit Python. When run under 64 bit python, it throws the above error.

I switched to 32 bit Python and had no problem.



Source: https://groups.google.com/forum/#!topic/pyenchant-users/5cCFthWE9ZM

+4


source







All Articles