Installation๏
From PyPI๏
Install Tau-Eval via pip:
pip install tau-eval
From source๏
To install from source:
Clone this repository on your own path:
git clone https://github.com/gabrielloiseau/tau-eval.git
cd tau-eval
Create an environment with your own preferred package manager. We used Python 3.10 and dependencies listed in pyproject.toml. If you use conda, you can just run the following commands from the root of the project:
conda create --name taueval python=3.10 # create the environment
conda activate taueval # activate the environment
pip install --user -r pyproject.toml # install the required packages