ImportError: cannot import name '_ccallback_c'

后端 未结 7 1263
一向
一向 2020-12-11 00:32

Initially I was getting this error (No Module name was found scipy) So I installed a Scipy wheel file. Now I don\'t get the same error any more but I get cannot import

7条回答
  •  甜味超标
    2020-12-11 01:05

    I had the same error on USING Anaconda, so I am not sure if using it would make any difference. I solved it by just uninstalling scipy and re-installing it using pip:

    pip uninstall scipy 
    

    you'll get this message:

    Uninstalling scipy-1.1.0: Would remove: c:\users\thesh\appdata\local\programs\python\python36-32\lib\site-packages\scipy-1.1.0.dist-info* c:\users\thesh\appdata\local\programs\python\python36-32\lib\site-packages\scipy* Proceed (y/n)?

    press y, and after pip is done, type:

    pip install scipy
    

提交回复
热议问题