Running Spyder 6.0.5 with Python version 3.11.11 and IPython 8.34.0. From within the Console window in Spyder I attempted to install Scipy with the following command:
conda install -c conda-forge scipy=1.15.2
All seems to be ok, no error messages and a request to restart the kernel, which I do. However when I try to run a program that uses the "Gaussian" function from scipy.signal I get the following error message:
from scipy.signal import gaussian
ImportError: cannot import name 'gaussian' from 'scipy.signal' (C:\Users\USERNAME\AppData\Local\spyder-6\envs\spyder-runtime\Lib\site-packages\scipy\signal\__init__.py)
I've tried to instead install Scipy from Windows command prompt with pip but it's made no impact.
Could anyone please advise as to what is occurring here. From what I've seen there had been issues previously that newer versions of Scipy had addressed, but the advice in those guides has not helped me. Thanks
Try from scipy.signal.windows import gaussian