downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Configuración en tiempo de ejecución> <Requerimientos
[edit] Last updated: Fri, 17 May 2013

view this page in

Instalación

La mayoría de las distribuciones de paquetes LAPACK no incluyen lapacke, por lo que el método mas sencillo es construirla desde el código fuente:

  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
  


add a note add a note User Contributed Notes Instalación - [2 notes]
up
1
neel at bravenewtalent dot com
1 year ago
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
up
0
gordon at bravenewtalent dot com
1 year ago
In order to install on ubuntu you will need the following libraries:

gfortran
liblapack-dev

 
show source | credits | sitemap | contact | advertising | mirror sites