I am trying to install the hunspell package for python 3.4 on Windows 7 using pip,
but when you run this
pip install hunspell
The following error message appears:
LINK : fatal error LNK1181: cannot open input file 'libhunspell.lib'
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\link.exe' failed with exit status 1181
I tried to download and compile hunspell myself with Cygwin, as suggested in a similar question, which I found here:
pip install hunspell: Cannot open include file: 'hunspell.h': No such file or directory
but he did not help.
source
share