导入蚂蚁导致scipy.stats的AttributeError

时间:2020-05-22 15:34:18

标签: python scipy

我正在CentOS上运行Spyder 3.3.6。我安装了

/home/peter/anaconda3/bin/pip install https://github.com/ANTsX/ANTsPy/releases/download/v0.2.0/antspyx-0.2.0-cp37-cp37m-linux_x86_64.whl

当我输入

import scipy
from scipy import stats

我没有错误。但是,当我输入

import ants

我明白了

AttributeError: module 'scipy' has no attribute 'stats'

1 个答案:

答案 0 :(得分:0)

尝试:

import scipy.stats

代替

from scipy import stats