我正在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'
答案 0 :(得分:0)
尝试:
import scipy.stats
代替
from scipy import stats