- First, sign in to LENGAU and establish an SSH connection to the dtn node.
- Ensure your base Conda environment is initialized:
- If it is initialized, you should see
(base)
next to your user ID. - This means your
.bashrc
file has been modified to load Conda automatically.
- If it is initialized, you should see
- If Conda is not initialized, follow the steps in the CHPC Python Guide.
- Purge any loaded modules and load the BIOMODULES module:
module purge module add chpc/BIOMODULES
- Use the following command to create a new Conda environment named
root_env
with ROOT preinstalled:conda create -n root_env root -c conda-forge
- The installation time may vary; it typically takes 3–5 minutes.
- List all available environments to confirm the path to your new environment:
conda info --envs
- Check if the ROOT package was installed by listing the installed packages
conda list
- Activate the root_env environment using:
conda activate root_env
- Start ROOT with the following command:
root
- When done, deactivate the environment with:
conda deactivate
This guide ensures a smooth installation of ROOT using a Conda-managed virtual environment on LENGAU. If you encounter any issues, feel free to reach out for support: [email protected]