当前位置: 代码迷 >> 综合 >> 运行程序时报错 module 'scipy' has no attribute 'spatical'
  详细解决方案

运行程序时报错 module 'scipy' has no attribute 'spatical'

热度:90   发布时间:2023-12-16 07:41:38.0

 输入下面代码,报错:AttributeError: module 'scipy' has no attribute 'spatial


import scipy
scipy.spatial

我的解决方法是

import scipy.spatial as T

然后用T来调用就好了!!!!!!!!

  相关解决方案