Search code examples
pythonhunspell

Unable to load Hunspell package


I have installed hunspell 1.6 in python 3.5 environment using conda. When I try to import, it gives a import error.

ImportError: No module named 'hunspell'

Here is the screenshot attached.

Hunspell Error


Solution

  • Are you on Linux? In my case the installation of missing packages helped:

    sudo apt install python-dev libhunspell-dev
    

    Can you add more info like the output of

    conda list hunspell