安装/配置
在线手册:中文 英文
PHP手册

安装

Most distribution LAPACK packages do not include lapacke, so the easiest method is to build from source:

  svn co https://icl.cs.utk.edu/svn/lapack-dev/lapack/trunk lapack
  cd lapack
  mkdir build
  cd build
  cmake -D BUILD_SHARED_LIBS=ON -D LAPACKE=ON ../
  make 
  sudo make install
  

安装/配置
在线手册:中文 英文
PHP手册
PHP手册 - N: 安装

用户评论:

neel at bravenewtalent dot com (20-Mar-2012 11:06)

To install on CentOS/RHEL you need blas and the latest version of cmake (at least 2.8)

sudo yum install blas blas-devel
wget http://www.cmake.org/files/v2.8/cmake-2.8.7.tar.gz #or latest version
tar xvf cmake-2.8.7.tar.gz
cd cmake-2.8.7.tar.gz
./configure
make
sudo make install

Then follow the above instructions

gordon at bravenewtalent dot com (20-Mar-2012 07:38)

In order to install on ubuntu you will need the following libraries:

gfortran
liblapack-dev