Skip to content

Commit 74e009e

Browse files
author
LutzGross
committed
Add LAPACKE/LAPACK packages to all platform installation instructions
Updated installation commands for all supported platforms to include LAPACK: - Arch Linux: added lapack package - Fedora: added lapack-devel package - OpenSUSE: added lapack-devel package - CentOS/Rocky/AlmaLinux: added lapack-devel package - macOS (Homebrew): added lapack package - macOS (MacPorts): added lapack package - FreeBSD: already includes lapack in BLAS (no change needed) All platforms now have proper LAPACK support documented.
1 parent c097a8a commit 74e009e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

installation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Install required packages:
206206
```bash
207207
sudo pacman -Sy python python-numpy python-scipy python-matplotlib
208208
sudo pacman -Sy gcc scons cmake
209-
sudo pacman -Sy boost boost-libs suitesparse hdf5 netcdf
209+
sudo pacman -Sy boost boost-libs suitesparse hdf5 netcdf lapack
210210
```
211211

212212
For MPI support:
@@ -236,7 +236,7 @@ Install required packages:
236236
sudo dnf install python3-devel python3-numpy python3-scipy python3-matplotlib
237237
sudo dnf install gcc-c++ gcc-gfortran scons cmake
238238
sudo dnf install boost-devel boost-python3-devel boost-python3 boost-numpy3 boost-iostreams boost-random
239-
sudo dnf install hdf5-devel netcdf-devel suitesparse-devel
239+
sudo dnf install hdf5-devel netcdf-devel suitesparse-devel lapack-devel
240240
```
241241

242242
For MPI support:
@@ -266,7 +266,7 @@ Install required packages:
266266
sudo zypper in python3-devel python3-numpy python3-scipy python3-matplotlib
267267
sudo zypper in gcc gcc-c++ gcc-fortran scons cmake
268268
sudo zypper in libboost_python3-devel libboost_numpy3-devel libboost_random-devel libboost_iostreams-devel
269-
sudo zypper in hdf5-devel netcdf-devel suitesparse-devel
269+
sudo zypper in hdf5-devel netcdf-devel suitesparse-devel lapack-devel
270270
```
271271

272272
For MPI support:
@@ -303,7 +303,7 @@ Install required packages:
303303
sudo dnf install python3-devel python3-numpy python3-scipy python3-matplotlib
304304
sudo dnf install gcc gcc-c++ gcc-gfortran scons cmake
305305
sudo dnf install boost-devel boost-python3 boost-python3-devel
306-
sudo dnf install hdf5-devel netcdf-devel suitesparse suitesparse-devel
306+
sudo dnf install hdf5-devel netcdf-devel suitesparse suitesparse-devel lapack-devel
307307
```
308308

309309
For MPI support:
@@ -335,7 +335,7 @@ Install Homebrew from [https://brew.sh](https://brew.sh), then:
335335
brew install python3 numpy scipy matplotlib
336336
brew install scons cmake
337337
brew install boost boost-python3
338-
brew install hdf5 netcdf suite-sparse
338+
brew install hdf5 netcdf suite-sparse lapack
339339
```
340340

341341
Some Python packages may need pip:
@@ -375,7 +375,7 @@ sudo port install python311
375375
sudo port select --set python python311
376376
sudo port select --set python3 python311
377377
sudo port install py311-numpy py311-scipy py311-matplotlib
378-
sudo port install scons cmake boost hdf5 netcdf suitesparse
378+
sudo port install scons cmake boost hdf5 netcdf suitesparse lapack
379379
```
380380
381381
For MPI support:
@@ -403,7 +403,7 @@ scons -j4 options_file=scons/templates/macports_options.py
403403
404404
```bash
405405
sudo pkg install python3 py39-numpy py39-scipy py39-matplotlib
406-
sudo pkg install scons cmake boost-python-libs hdf5 netcdf suitesparse
406+
sudo pkg install scons cmake boost-python-libs hdf5 netcdf suitesparse lapack
407407
```
408408
409409
For building documentation:

0 commit comments

Comments
 (0)