ImportError: cannot import name murmurhash3_32

前端 未结 4 697
无人及你
无人及你 2021-01-11 21:26

I am trying to use the sklearn.qda package in python. I have installed it successfully but when Itry to import it I get the error message below. Can anybody tell me what sho

相关标签:
4条回答
  • 2021-01-11 22:12

    I faced the similar situation of getting mumurhash error while installing sklearn.preprocessing library.

    I upgraded numpy version from 1.13 to 1.15

    using

    pip install --upgrade numpy
    

    After this, I was able to import the sklearn library.

    0 讨论(0)
  • 2021-01-11 22:12

    I faced a similar problem, so there are mainly two solutions

    1. Either run it in administrator mode and install all the libraries and run in admin mode. Something that I would not recommend
    2. Use virtualenv to install the libraries again and run your command in the virtualenv. This worked for me.

    Hope this helps

    0 讨论(0)
  • 2021-01-11 22:17

    I started a new shell and this problem went away

    0 讨论(0)
  • 2021-01-11 22:23

    I had the same problem, I run:

    sudo pip install -U scikit-learn
    

    and now everything is working fine

    0 讨论(0)
提交回复
热议问题