Rate This Document
Findability
Accuracy
Completeness
Readability

Installing Libxc

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Run the following commands to decompress the Libxc installation package:
    cd /path/to/LIBXC
    tar -xvf libxc-4.3.0.tar.gz
  3. Run the following command to go to the directory generated after decompression:
    cd libxc-4.3.0
  4. Run the following commands to perform the compilation:
    mkdir /path/to/LIBXC/build
    cmake -H. -B/path/to/LIBXC/build -DCMAKE_INSTALL_PREFIX=/path/to/LIBXC/install
  5. Run the following commands to perform the installation:
    cd /path/to/LIBXC/build
    make -j
    make install