Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install gensim from anaconda prompt?

When I put the following command in anaconda prompt

conda install -c anaconda gensim

Python stops working and shows the following error message:

enter image description here

How do I deal with this problem?

like image 742
Hardik Bapna Avatar asked Dec 14 '22 16:12

Hardik Bapna


2 Answers

As per the documentation https://anaconda.org/anaconda/gensim

install it by

conda install -c anaconda gensim 

It might take a while to solving the environment

like image 167
Deepak Bandela Avatar answered Dec 27 '22 15:12

Deepak Bandela


I usually in stall gensim using pip on anaconda prompt using the following command

pip install -U gensim

or simply

pip install gensim

as shown in the anaconda documentation.

like image 24
Samuel Nde Avatar answered Dec 27 '22 15:12

Samuel Nde