I am trying to install mecab on English OS Windows 10. I am using the command prompt and simply did;
pip install mecab
It looked like the package was installed;
Collecting mecab
Using cached mecab-0.996.3-cp39-cp39-win_amd64.whl (500 kB)
Installing collected packages: mecab
Successfully installed mecab-0.996.3
But then, if I go to python (by typing 'python' in the command line) and do;
import mecab
I get this error.
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'mecab'
If I try to import MeCab.py file, I get;
ImportError: DLL load failed while importing _MeCab: The specified module could not be found.
I set PYTHONPATH in the environmental variables. No luck.