Skip to content

Instantly share code, notes, and snippets.

@SHDShim
Created January 2, 2021 05:07
Show Gist options
  • Save SHDShim/392007b1b87772b64c726ea9a8c1874d to your computer and use it in GitHub Desktop.
Save SHDShim/392007b1b87772b64c726ea9a8c1874d to your computer and use it in GitHub Desktop.

Revisions

  1. SHDShim created this gist Jan 2, 2021.
    14 changes: 14 additions & 0 deletions libxc.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    How to install libxc in agave.

    ```
    mkdir -p $MYLIBXCDIR
    cd $MYLIBXCDIR
    wget -O libxc-5.0.0.tar.gz http://www.tddft.org/programs/libxc/down.php?file=5.0.0/libxc-5.0.0.tar.gz
    tar xzf libxc-5.0.0.tar.gz
    cd libxc-5.0.0
    mkdir install
    ./configure --prefix=PATH/TO/LIBXC
    make
    make check
    make install
    ```