Page MenuHomec4science

build-octopus-seq.sh
No OneTemporary

File Metadata

Created
Tue, Aug 20, 23:07

build-octopus-seq.sh

#!/bin/bash -l
# Build octopus (www.tddft.org) for sequential only (no OMP, no MPI) package
module purge
module load intel intel-mpi intel-mkl fftw gsl
# prefix location
mkdir install
INSTALL=$(pwd)/install
# build libxc first
# -----------------
# download version 3.0 from http://www.tddft.org/programs/libxc/down.php?file=3.0.0/libxc-3.0.0.tar.gz
wget ...
# untar it
tar ...
# configure
./configure ...
# make
make ...
# make install
make install
# build octopus
# -----------------
# download the version 7.1 from http://octopus-code.org/down.php?file=7.1/octopus-7.1.tar.gz
wget ...
# untar it
tar ...
# configure it
./configure ...
# make
make ...
# make install
make install

Event Timeline