My anaconda navigator is showing multiple errors encountered when I try to download the gensim module through the anaconda environment. I am a macOS user.
Unable to download gensim module
Hi @Shivam-Goyal-209664276424532
A probable cause is that there are too many packages installed through pip and now, conda can’t resolve all the dependencies.
My advice would be to create a fresh conda environment and then install gensim.
Follow the below steps:
conda create -n your_new_env_name anaconda
conda activate your_new_env_name
conda install -c anaconda gensim
Then do your gensim related work in this new environment.
Let me know if this works for you!
Thanks a lot, it’s working now
1 Like
Glad I could help you Shivam!