ImportError: cannot import name murmurhash3_32

前端 未结 4 723
无人及你
无人及你 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.

提交回复
热议问题