ROOT build with Python 3.7 in centos7

Hi,
conda is notoriously slow. I find myself much better when using mamba. It’s the same as using conda, but much faster. I suggest you read the docs, but the following steps should already give you a minimal working environment (taken from here):

curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh"
bash Mambaforge-$(uname)-$(uname -m).sh
# The bash script will install mamba into a folder of your choice
# For simplicity, in the following I suppose you installed it
# in a folder called `mambaforge` in the same directory where you
# ran the bash script.
source mambaforge/bin/activate
mamba create -n myenv root python==3.7.*
1 Like