ubuntu16.04安装octave5.1.0(只有命令行形式,没有GUI图形界面)

从这里下载对应的压缩包:

https://mirrors.ustc.edu.cn/gnu/octave/

我下载了5.1版本

然后解压到octave5.1.0

cd octave5.1.0

./configure

sudo make

sudo make install

事情并没有这么简单,遇到的问题及解决方法:

主要是在./configure碰壁:

(1)报错error:No Fortran compiler

解决:sudo apt-get install gfortran

或者sudo apt-get install g77

(2)error:required to have BLAS and LAPACK libraries    

解决:sudo apt-get install libblas-dev libatlas-dev liblapack-dev

(3)error:to build Octave,you must to have the PCRE Library and header files

解决:sudo apt-get install libpcre3-dev

之后就是make,时间有些漫长。。。

你可能感兴趣的:(ubuntu16.04)