我正在尝试使用以下命令在 Ubuntu 15.04 虚拟机上安装 scipy
pip install scipy
然而,在安装过程中,我收到以下错误:
error: library dfftpack has Fortran sources but no Fortran compiler found
如何解决这个问题?
答案1
安装 fortran 编译器?
apt-get install gfortran
应该可以解决问题。
偶尔,scipy会打包在ubuntu中,预编译。你可以这样做
apt-get install python-scipy
反而。