Table of Contents

Python with jupyter-lab

Add the conda-forge channel by running:

conda config --add channels conda-forge

Then, install jupyterlab:

conda install jupyterlab

Useful packages:

conda install jupyter-ruff

Create environment for different python version

* This uses version 3.8 as example. However, python 3.8 is now available from Anaconda

conda update -n base -c defaults conda
conda create -n python38 python=3.8
conda activate python38

HDF5 and c++

conda install hdf5
conda install gxx_linux-64