Get from the official website https://www.python.org/downloads/mac-osx/ the version Python 3.6.6. Follow the instructions and install it. The predefined folder should be /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.
pip3 install virtualenv
mkdir $HOME/.python-virtual-environments && cd $HOME/.python-virtual-environments
python3 -m venv env
source $HOME/.python-virtual-environments/env/bin/activate
Clone and install the package and all the needed dependences (package is not needed at this stage but it comes with a automatic installation procedure of all needed libraries
git clone https://github.com/ginnocen/MachineLearningHEP.git
source $HOME/.python-virtual-environments/env/bin/activate
cd MachineLearningHEP
pip3 install -e .
pip3 install jupyterlab
jupyter lab
This will open a browser. Click on the available example ExampleDataFrame.ipynb in the folder Notebooks to load the example. To execute each cell, click on Shift+Return