Some hands-on exercices complement the lectures. They will be available as Jupyter notebooks attached to the indico agenda. These notebooks can be run locally or in Google Colab. Running locally is the preferred option
To run the notebooks locally you need to install ROOT, the easiest way is with miniforge:
Install miniforge
wget -O miniforge.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
bash miniforge.sh -b -p $HOME/miniforge
rm miniforge.sh
source $HOME/miniforge/bin/activate
Create a new environment with ROOT and a few other useful python packages
mamba create -y -n r root=6.28.04
source activate r
mamba install -y seaborn uncertainties jupyterlab scikit-hep xgboost
In some versions of macOS, you may encounter an error of this type: dyld: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
when trying to isntall miniforge
.
In this case, you can follow the following instructions (taken from
here):
First, install openssl@1.0
brew install rbenv/tap/openssl@1.0
Depending on your exact system configuration, you may need to switch to a different version. Check the output of ls -al /usr/local/Cellar/openssl
for the version number to switch to.
Then
ln -sfn /usr/local/Cellar/openssl@1.0/<version> /usr/local/opt/openssl
source $HOME/miniforge/bin/activate
source activate r