Choose timezone
Your profile timezone:
The presentation material and example root scripts and files will be available at https://cernbox.cern.ch/s/jbGSoH0PWqTCr8mIf you don’t have ROOT installed on your machines, or if you simply prefer it, the CERN SWAN notebook service has root installed: https://swan.cern.ch Note that you need a CERN user to log in to SWAN.If you want to install ROOT on your machine, installing it in a virtual environment using Conda is relatively straight forward:
- Install Anaconda: https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html
- Create a Conda environment with ROOT: conda create -c conda-forge --name root_env root
- Activate the Conda environment: conda activate root_env (As long as the environment root_env is active, you have access to ROOT)
- To deactivate the environment: conda deactivate