Linux下安裝Gensim

獵手家園發表於2018-10-22

依賴軟體包:numpy

直接使用pip安裝:

[root@mycentos ~]#pip install gensim

 

安裝gensim的時候會遇到下面的一系列錯誤:

Cannot uninstall 'numpy'. It is a distutils installed project and thus we cannot accurate

意思是:

安裝gensim的時候需要numpy更高的版本,而自帶的numpy版本較低,版本有問題但是numpy已經安裝過了,無法進行直接解除安裝。
解決辦法:強行安裝更新更高的版本。

[root@mycentos ~]#pip install numpy --ignore-installed numpy
[root@mycentos ~]#pip install scipy --ignore-installed scipy

 其它軟體同理。

 

相關文章