解决报错module ‘scipy‘ has no attribute ‘spatial‘

将evaluate.pywen文件中的:

import scipy

改为:

import scipy.spatial

顺利解决!

你可能感兴趣的:(报错解决,python,pycharm)