问题
I just got acquainted with gensim and I tried to install it. I performed any steps is written in page https://radimrehurek.com/gensim/install.html but I could not install it. I have installed python 2.7, scipy, numpy successfully on windows 8.1 64bit, but when I run setup.py in gensim it doesn't run.
Please help me I need to gensim Immediately and tell me installation steps with More details and other software that needs to be installed before it. thanks
回答1:
Gensim depends on scipy and numpy.You must have them installed prior to installing gensim.Simple way to install gensim in windows is, open cmd and type
pip install -U gensim
Or download gensim for windows from
https://pypi.python.org/pypi/gensim
then run
python setup.py test
python setup.py install
来源:https://stackoverflow.com/questions/33200360/how-to-install-gensim-on-windows-8-1