available as open-source code under: https://github.com/giacomov/3ML .
wget -q https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O ~/miniconda.sh
This will install conda in ~/miniconda . If you want to put it somewhere else change accordingly these 3 lines
bash ~/miniconda.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
source ~/miniconda/bin/activate
conda create --name hawc_test -y python=2.7
source activate hawc_test
conda install -c giacomov -c hawc -y liff threeml boost=1.61
#install mpmath package #(for convenient definition of inverse gamma function, used in cutoff-powerlaw integration) conda install mpmath
#for convenient environment loading, add to your login script: export PATH="$HOME/software/miniconda/bin:$PATH" source ~/software/miniconda/bin/activate source activate hawc_test export OMP_NUM_THREADS=1 export MKL_NUM_THREADS=1 export NUMEXPR_NUM_THREADS=1
#test: ipython import threeML