I am trying to use word2vec from gensim but I get this warning on running: - C:\Users\user1PycharmProjects\FirstTest\venv\lib\site-packages\gensim\utils.py:1212: UserWarning: detected Windows; aliasing chunkize to chunkize_serial warnings.warn("detected Windows; aliasing chunkize to chunkize_serial") - C:\Users\user1\PycharmProjects\FirstTest\venv\lib\site-packages\gensim\models\base_any2vec.py:743: UserWarning: C extension not loaded, training will be slow. Install a C compiler and reinstall gensim for fast training. "C extension not loaded, training will be slow. "
I installed (& configure path):
- mingw32-gcc-ada-bin
- mingw32-gcc-fortran-bin
- mingw32-gcc-g++-bin
- mingw32-gcc-objc-bin
I sure that I have a compiler (tested with a C script), but I don't know why I can't use the fast version of gensim !!! I run my script on windows 10 with python3.
Thank you