Installed updated pyLDAvis but module missing 'pyLDAvis.gensim_models'

3.1k Views Asked by At

I found different links that answers this problem but it does not work

what seems to be the problem? from pip freeze:

pyLDAvis==3.3.1

from code:

import pyLDAvis
import pyLDAvis.gensim_models as gensim_vis

error:

File "my_py.py", line 2, in <module>
import pyLDAvis.gensim_models as gensim_vis
ModuleNotFoundError: No module named 'pyLDAvis.gensim_models'
2

There are 2 best solutions below

0
On

I had the same problem. This worked for me:

    !pip install pyLDAvis==3.3.1

And then do:

    import pyLDAvis.gensim_models
2
On

If you are working in jupyter notebook (python vs3.3.0) "the No module named ‘pyLDAvis.gensim’" error can be solved by using:

      import pyLDAvis.gensim_models