Installation

Using Pip

We recommend using Python 3.8.10.

  1. Install the package from PyPI

    pip install tabularbench
    

With Pyenv and Poetry

  1. Clone the repository

  2. Create a virtual environment using Pyenv with Python 3.8.10.

  3. Install the dependencies using Poetry.

   poetry install

Using conda

  1. Clone the repository

  2. Create a virtual environment using Conda with Python 3.8.10.

    conda create -n tabularbench python=3.8.10
    
  3. Activate the conda environment.

    conda activate tabularbench
    
  4. Install the dependencies using Pip.

    pip install -r requirements.txt