Rate This Document
Findability
Accuracy
Completeness
Readability

Installing OpenBLAS

Procedure

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