Installing OpenBLAS
Procedure
- Use PuTTY to log in to the server as the root user.
- Run the following commands to decompress the OpenBLAS installation package:
unzip OpenBLAS-develop.zip
- Run the following command to switch to the directory containing the decompressed files:
cd OpenBLAS-develop
- Run the following command to perform configuration:
export CC=`which gcc` export CXX=`which g++` export FC=`which gfortran`
- Run the following commands to perform compilation and installation:
make make PREFIX=/path/to/OPENBLAS install
Parent topic: Configuring the Compilation Environment