Installation

TRIQS and its applications are provided a la carte: after you have installed the TRIQS library, you will be able to easily install various TRIQS-based applications: impurity solvers, tools for DFT+DMFT calculations, etc.

This page describes the installation of the TRIQS library itself. The installation procedure of the applications is described on their respective sites, under ‘Install’.

Development Version

To guarantee reproducibility in scientific calculations we strongly recommend the use of a stable release of both TRIQS and its applications.

If however you would like to try the latest development version you can use the unstable branch instead. This will make the latest library improvements and new features available to you. Note however that the development versions may include changes of the API. We use continuous integration to ensure that both the unstable and release branches compile and pass all tests. This is checked for both the TRIQS library and several public (and private) applications.

Packaged Versions of TRIQS

We provide various packages for the TRIQS library and some of the major applications. Note that the packages are compiled for generic x86 CPU’s and do not provide optimal performance on modern CPU’s. For optimal performance please consider using easybuild or compilation from source and be sure to enable architecture-specific optimizations.

Ubuntu Debian packages

We provide Debian packages for the Ubuntu LTS Versions 18.04 (bionic) and 20.04 (focal). They are hosted in a TRIQS 3 specific repository that can be added with:

sudo apt-get update && sudo apt-get install -y software-properties-common apt-transport-https curl
source /etc/lsb-release
curl -L https://users.flatironinstitute.org/~ccq/triqs3/$DISTRIB_CODENAME/public.gpg | sudo apt-key add -
sudo add-apt-repository "deb https://users.flatironinstitute.org/~ccq/triqs3/$DISTRIB_CODENAME/ /"

To install the required runtime packages and triqs into the system tree at /usr run:

sudo apt-get update && sudo apt-get install -y triqs

If you aim to compile applications against the triqs library, additional development libraries have to be installed. You should further set the following environment variable permanently:

export CPLUS_INCLUDE_PATH=/usr/include/openmpi:/usr/include/hdf5/serial/:$CPLUS_INCLUDE_PATH

For full functionality of the C++2Py Tool, please install clang and the libclang library:

sudo apt-get install clang libclang-dev

Anaconda

We provide Linux and OSX packages for the Anaconda distribution. The packages are provided through the conda-forge repositories. After installing conda you can install TRIQS with:

conda install -c conda-forge triqs

See also github.com/conda-forge/triqs-feedstock. We further provide packages for triqs_cthyb, triqs_dft_tools and triqs_tprf.

In case you encounter troubles resolving the dependencies, you can try using mamba instead of conda:

conda install -c conda-forge mamba
mamba install -c conda-forge triqs

Docker

The virtualization software docker can be used to run a TRIQS environment for both Jupyter Notebook and shell access on a variety of operating systems. Once docker is installed, just pull the latest image with:

docker pull flatironinstitute/triqs

and follow the commands on the image-website.

Singularity

The virtualization software singularity allows for easy set-up on cluster machines. Ask your cluster administator to install the singularity software. The TRIQS setup is then as simple as:

singularity pull docker://flatironinstitute/triqs

which will generate an image file triqs_latest.sif. You can then execute commands inside this image file, e.g.:

singularity exec triqs_latest.sif python -c "from triqs import *"

In order to run your code in parallel you will need to use Open MPI version 4.0.3 to match the version of the singularity image. You can then run any command in parallel, e.g.:

mpirun -np 2 singularity exec triqs_latest.sif python -c "from triqs.utility import mpi; print mpi.rank"

For more information on the use of singularity in conjunction with docker images please refer to the documentation.

Binder

Binder is a web-service running Jupyter notebooks for direct access. A TRIQS Jupyter notebook environment can be accessed directly at triqs.github.io/notebook.

Note

Once your binder session is closed, your work will be lost.

Compiling TRIQS from source using EasyBuild

EasyBuild is a build and installation framework for managing scientific software on HPC systems. We here assume that a working copy of EasyBuild is already available (see installation guide otherwise). TRIQS 3.0.0 is available starting from EasyBuild version 4.3.1. To bring EasyBuild to the latest release (including the latest definitions of all software installable via EasyBuild), type:

eb --install-latest-eb-release

To search for the available TRIQS packages, type:

eb -S TRIQS

To install TRIQS or a TRIQS applications, type (for example):

eb --robot TRIQS-3.0.0-foss-2020a-Python-3.8.2.eb
eb --robot TRIQS-cthyb-3.0.0-foss-2020a-Python-3.8.2.eb

This will fetch, compile and install the requested package, as well as all required dependencies (including toolchains, Python, various libraries). Corresponding environment modules will also be generated, thus a package can be loaded using (for example):

module load TRIQS-cthyb/3.0.0-foss-2020a-Python-3.8.2

or simply:

module load TRIQS-cthyb

for the most recent version.

Compiling TRIQS from source (Advanced)

Prerequisites

The TRIQS library relies on a certain number of standard libraries and tools described in the list of requirements. Please pay particular attention to the C++ compilers and to Python virtual environments. Here are instructions to install these necessary libraries on two standard systems:

Note

Please ensure that you have all the dependencies installed before proceeding further!

Installation steps

We provide hereafter the build instructions in the form of a documented bash script. You can adapt INSTALL_PREFIX, NCORES for your local settings. Note that, contrary to previous versions of TRIQS, the installation directory CMAKE_INSTALL_PREFIX is now mandatory in the cmake configuration.

#!/bin/bash

# Set this variable to your desired install directory
INSTALL_PREFIX=$(pwd)/install

# Set the number of cores for the compilation
NCORES=4

# Clone the git repository of triqs
git clone https://github.com/TRIQS/triqs triqs.src

# Use cmake to configure the triqs build process
mkdir -p triqs.build && cd triqs.build
cmake ../triqs.src -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX

# Build, test and install triqs
make -j$NCORES && make test && make install
cd ../

# Load the triqs installation into your environment
source $INSTALL_PREFIX/share/triqsvars.sh

echo 
echo "If you want to automatically load triqs into your environment,"
echo "please add the following line to your ~/.bash_profile (or ~/.zprofile):"
echo "source $INSTALL_PREFIX/share/triqsvars.sh"

Note

Caution: The compilation of TRIQS, even if run in serial mode, can temporarily use up to 4 Gigabytes of RAM. The restrictions on the Login-Nodes of certain HPC Machines might not provide sufficient memory for the compilation. Please consider compiling within an interactive session on a Compute-Node or contact the admins of your HPC Machine.

Environment setup

TRIQS provides a small script (triqsvars.sh) to load its installation into your environment variables. Please source it with the proper replacement of INSTALL_PREFIX:

source $INSTALL_PREFIX/share/triqsvars.sh

To automate this process, please add this line to your ~/.bash_profile (or ~/.zprofile)