Installation centos lapack安装错误gfortran

Installation centos lapack安装错误gfortran,installation,centos,scipy,lapack,Installation,Centos,Scipy,Lapack,我正在尝试安装lapack和blas来安装scipy和numpy 但我不能编译lapack和blas 我在没有lapack和blas的情况下安装了numpy 但西皮需要它们 当我试图安装lapack时 ( cd INSTALL; make; ./testlsame; ./testslamch; ./testdlamch; \ ./testsecond; ./testdsecnd; ./testieee; ./testversion ) make[1]: Entering director

我正在尝试安装lapack和blas来安装scipy和numpy

但我不能编译lapack和blas

我在没有lapack和blas的情况下安装了numpy

但西皮需要它们

当我试图安装lapack时

( cd INSTALL; make; ./testlsame; ./testslamch; ./testdlamch; \
    ./testsecond; ./testdsecnd; ./testieee; ./testversion )
make[1]: Entering directory `/home/yjyoon/util/lapack_3.5.0/INSTALL'
gfortran  -O2 -frecursive -c lsame.f -o lsame.o
make[1]: gfortran: Command not found
make[1]: *** [lsame.o] Error 127
make[1]: Leaving directory `/home/yjyoon/util/lapack_3.5.0/INSTALL'
/bin/sh: ./testlsame: No such file or directory
/bin/sh: ./testslamch: No such file or directory
/bin/sh: ./testdlamch: No such file or directory
/bin/sh: line 1: ./testsecond: No such file or directory
/bin/sh: line 1: ./testdsecnd: No such file or directory
/bin/sh: line 1: ./testieee: No such file or directory
/bin/sh: line 1: ./testversion: No such file or directory
make: *** [lapack_install] Error 127
上面的错误消息出现了

我参考了这个网站。

所以我打字

cp ./make.inc.example make.inc
但是,我不知道如何更改Makefile

目前,我无法使用yum

所以我需要从源代码安装所有的东西

如果你知道如何安装,请让我知道

提前感谢,

正如詹姆告诉我的

我试图用make编译BLAS 结果是,

gfortran -O3 -c isamax.f -o isamax.o
make: gfortran: Command not found
make: *** [isamax.o] Error 127
在本例中,错误127也出现了

make : gfortran : Command not found
也显示

这可能是gfortran的问题

现在我使用的是centos 5.9

我不能使用路线帐户

如果我能确定我可以安装程序而不影响其他人的帐户 即使我使用路线帐户,
也许管理员允许我使用路由帐户。

相当容易编译下载、键入make、wait,并包含编译SciPy所需的所有内容,您可能希望尝试该路由。谢谢您的回答。我编辑了这个问题。请看这个