今天在使用别人代码的时候,代码提示
ImportError: cannot import name multivariate_normal
虽然我已经安装了scipy库,但是由于版本较低,所以就报这个错误。
import scipy
print scipy.version.full_version
就可以查看scipy的版本号
解决上面问题的方法显然是更新scipy版本。
pip install scipy --upgrade
值得注意的是,如果你没有安装fortran是编译不过去的。
error: library dfftpack has Fortran sources but no Fortran compiler found
所以还需要安装fortran
sudo apt-get install fortran