.. index:: installation .. highlight:: bash .. _triqs_install: ############ 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'. We provide pre-compiled versions of triqs and applications of each stable release. If however you would like to try the latest development version you can use the `unstable` branch instead and compile triqs manually. 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. .. note:: To guarantee reproducibility in scientific calculations we strongly recommend the use of a stable `release `_ of both TRIQS and its 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 :ref:`easybuild ` or :ref:`compilation from source ` and be sure to enable `architecture-specific optimizations `_. .. _ubuntu_debian: Ubuntu Debian packages ---------------------- We provide Debian packages for the Ubuntu LTS Versions 20.04 (focal) and 22.04 (jammy). 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 :ref:`development libraries ` have to be installed. You should further set the following :ref:`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 .. _triqs_anaconda: 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 .. _triqs_docker: 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 `_. .. _triqs_singularity: 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 python3 -c "from triqs.gf 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 python3 -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 `_. .. _triqs_binder: 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. .. _triqs_easybuild: 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. .. _triqs_compilation: Compiling TRIQS from source (Advanced) ====================================== Prerequisites ------------- The TRIQS library relies on a certain number of standard libraries and tools described in the :ref:`list of requirements `. Please pay particular attention to the :ref:`C++ compilers` and to :ref:`Python virtual environments`. We provide explicit version requirements and instructions on how to install these necessary libraries on two standard systems: .. toctree:: :maxdepth: 1 installation/requirements installation/ubuntu installation/osx_install .. 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. .. literalinclude:: install.sh :language: bash .. 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 :ref:`environment variables `. Please source it with the proper replacement of INSTALL_PREFIX:: source $INSTALL_PREFIX/share/triqs/triqsvars.sh To automate this process, please add this line to your `~/.bash_profile `_ (or `~/.zprofile `_) Further reading --------------- .. toctree:: :maxdepth: 1 installation/install_options installation/environment_vars installation/python_virtualenv installation/clang