This article was written by a weak man who didn't even know that he could install by specifying the version with pip. Please be careful.
I have two servers running and I wanted to build the other python environment (mainly word2vec) for one environment, but it doesn't work. Example) pip install doesn't work, I get UnicodeEncodeError when trying to read vector space
Apparently gensim and word2vec didn't go well together.
When I specified the version with pip, it was one shot.
Former server
pip list | grep word2vec #Check version
pip list | grep gensim
The meshing environment was word2vec (0.5.1)
and gensim (0.10.1)
, so align them.
Server that wants to prepare a new environment
pip install gensim==0.10.1
pip install word2vec==0.5.1
Recommended Posts