出错了AttributeError: module 'scipy.interpolate' has no attribute 'create_spline'
时间: 2023-08-05 12:05:15 浏览: 160
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attribute ‘imread’,imresize,imsave等问题
根据引用[1]和引用[2]的信息,报错信息是"AttributeError: module 'scipy.misc' has no attribute 'imresize'",这意味着在最新版的scipy中,scipy.misc模块不再包含imresize函数。同样地,根据引用[3]的信息,scipy.misc模块中也找不到imsave等模块。因此,出错信息"AttributeError: module 'scipy.interpolate' has no attribute 'create_spline'"可能是因为在最新版的scipy中,scipy.interpolate模块不再包含create_spline函数。建议您检查您所使用的scipy版本,并查看相关文档以了解最新版本中的函数变动。如果您需要使用这些函数,可以考虑使用其他替代方案或安装旧版本的scipy。
阅读全文