Installation

We recommend using a Conda environment to install HTA. To install Anaconda, see here. Holistic Trace Analysis runs on Linux and Mac with Python >= 3.8.

Setup a Conda environment

# create the environment env_name
conda create -n env_name

# activate the environment
conda activate env_name

# deactivate the environment
conda deactivate

Installing Holistic Trace Analysis

Install using pip

pip install HolisticTraceAnalysis

Install from source

# get the source code
git clone https://github.com/facebookresearch/HolisticTraceAnalysis.git

# execute the command below from the root of the repo
pip install -e .