mikeizbicki/cmc-csci145-math166

gensim import issue: no numpy model?

Closed this issue · 2 comments

I was trying to import a model with gensim on the lambda server. I was doing exactly what the lecture video was doing, and I got the following error after import gensim.doawnloader:

ModuleNotFoundError: No module named 'numpy.testing.nosetester'

I was wondering if I have the correct version of all dependencies... can someone share their gensim and numpy version?

I ran into a similar error and used the following Stack Overflow post to resolve it: ModuleNotFoundError: No Module Named 'numpy.testing.nosetester'. The commands I used to install the correct dependencies were:

pip install numpy==1.18
pip install scipy==1.1.0
pip install scikit-learn==0.21.3

Hope this helps!

That worked. Thanks!