We recommend Mamba to install necessary dependencies and use the TATHU package.
First, install Mamba.
Clone the TATHU Repository:
git clone https://github.com/uba/tathu.git
Go to the source code folder:
cd tathu
Create a new environment with all necessary dependencies:
mamba env create -f env.yml
Active the created environment (
env-tathu
):conda activate env-tathu
Install TATHU package:
python -m pip install --no-deps . or python -m pip install --no-deps -e . # develop mode
Verify installation:
python import tathu tathu.__version__
We recommend Miniconda and conda-forge
channel to install necessary dependencies and use the TATHU package.
First, install Miniconda.
Add
conda-forge
channel and adjustchannel_priority
tostrict
:conda config --add channels conda-forge conda config --set channel_priority strict
Clone the TATHU Repository:
git clone https://github.com/uba/tathu.git
Go to the source code folder:
cd tathu
Create a new environment with all necessary dependencies:
conda env create -f env.yml
Active the created environment (
env-tathu
):conda activate env-tathu
Install TATHU package:
python -m pip install --no-deps . or python -m pip install --no-deps -e . # develop mode
Verify installation:
python import tathu tathu.__version__