ImportError when importing certain modules from SciPY

前端 未结 5 2065
北海茫月
北海茫月 2020-11-27 07:19

I have used Scipy for some time. This is the first time I am using it for Signal processing! But when I import modules like

from scipy import signal
from sci         


        
5条回答
  •  无人及你
    2020-11-27 08:04

    Similar to the OP, I already had the Intel MKL libraries installed on my system. I was unable to load scipy.linalg with the same error message. I uninstalled the old version of numpy and scipy (which I installed before installing the Intel compilers and math libraries). Then ran pip install scipy, and magically I could now import scipy.linalg without the error.

    I'm not entirely sure what caused it, and why it was unable to find the library it needed. But it somehow fixed the problem for me on Python 3.7.1 with Anaconda.

提交回复
热议问题