From 2b7d13fbc6968c9c560e6cd93fd376ecfe66dd03 Mon Sep 17 00:00:00 2001 From: Vincenzo Eduardo Padulano Date: Tue, 12 Dec 2023 17:59:01 +0100 Subject: [PATCH] Revert "Remove mention of the conda nightlies" The conda nightlies are available again, make sure the installation instructions are mentioned. --- install/nightlies.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/install/nightlies.md b/install/nightlies.md index 0d1b9e9b..d2a885aa 100644 --- a/install/nightlies.md +++ b/install/nightlies.md @@ -24,3 +24,22 @@ If you have access to LCG, as it is the case on LXPLUS, for example, ROOT nightl source /cvmfs/sft.cern.ch/lcg/views/dev3/latest//setup.sh ``` - To get a ROOT version a few days old, replace `latest` with the desired day. + +## Conda package + +ROOT nightly builds are available as conda packages hosted on our website. +To create a new conda environment with the latest ROOT build, you can use: + +``` +conda create -n root-nightly -c https://root.cern/download/conda-nightly/latest -c conda-forge root-nightly +``` + +You can then activate this environment with + +``` +conda activate root-nightly +``` + +More instructions about using the ROOT conda package are available in [this blog post](https://iscinumpy.gitlab.io/post/root-conda/). + +Please report any issues with the conda package [here](https://github.com/conda-forge/root-feedstock){:target="\_blank"}.