https://github.com/besdiracgrid/module-cvmfs
Some common packages are installed on IHEP cvmfs under the path
/cvmfs/dcomputing.ihep.ac.cn/hpc/sw
. The environment of these packages
could be managed by Environment Modules.
This project include the module files for these packages and also the installation instructions.
Initialize Environment Modules
. Change the shell type accordingly
if not using bash:
unset MODULEPATH
source /cvmfs/dcomputing.ihep.ac.cn/hpc/sw/x86_64-sl6/modulesetup/bash
Change x86_64-sl6
to x86_64-sl7
for SL7 OS.
Then find which packages are available for use:
module avail
Load the specified package and version. For example:
module load root/6.18.04
echo $ROOTSYS
root -b -q
Unload the environment:
module unload root
For more information about Environment Modules, please check the documentation.