Installation#
Using PyPI#
Install the latest stable release from PyPI:
python -m pip install tanat
Using the latest GitHub-hosted version#
To get TanaT’s latest development version directly from GitHub:
python -m pip install git+https://github.com/TanaT-Lab/TanaT.git
Dependencies#
TanaT relies on several foundational libraries from the data science Python ecosystem, including:
pandasfor convenient tabular data handlingpolarsandpyarrowfor high-performance columnar data processingnumpyandscipyfor numerical and scientific computing (transitive dependencies)matplotlibfor basic visualizationscikit-learnfor machine learning utilitiesnumbafor performance optimization through JIT compilation
In addition, TanaT makes use of:
tanat_utilsfor shared internal utilitiestqdmfor progress tracking in processing pipelines (transitive dependency)
Optional dependencies#
SQL support (requires connectorx):
python -m pip install tanat[sql]