no module named 'scipy.fft'
时间: 2023-04-26 20:04:18 浏览: 226
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attribute ‘imread’,imresize,imsave等问题
这个错误提示是因为在您的代码中使用了scipy.fft模块,但是您的Python环境中没有安装scipy库或者scipy库版本过低导致无法找到该模块。您需要安装或更新scipy库才能解决这个问题。可以使用以下命令安装最新版本的scipy库:
pip install --upgrade scipy
阅读全文