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
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