ImportError when importing certain modules from SciPY

前端 未结 5 2062
北海茫月
北海茫月 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:00

    I had this issue on 3.6 and reinstalling didn't work,downloading the wheel didn't work. I found a solution that did work:

    go to "site-packages/scipy" folder and open __init__.py file for editting. At the very bottom add this line of code:

    from . import signal
    from . import special
    from . import linalg
    from . import 
    

    this is the only solution that has worked for me and it should work for any one

提交回复
热议问题