Skip to content

Installation

Sebastian Göttel edited this page Feb 28, 2025 · 2 revisions

To set up the RedTEI pipeline, follow these installation steps:

  1. Clone the Repository:

    git clone git clone https://github.com/sgoettel/RedTEI.git
    cd RedTEI
  2. Before setting up the environment, make sure you are using Python 3.12+:

    python3.12 --version

    If python3.12 is not available, install it first:

    sudo add-apt-repository ppa:deadsnakes/ppa
    sudo apt update
    sudo apt install python3.12 python3.12-venv python3.12-dev

    then set up environment:

    python3 -m venv .venv
    source .venv/bin/activate
  3. Install dependencies as listed in the requirements.txt file.

    pip install --upgrade pip
    pip install -r requirements.txt --no-cache-dir

Clone this wiki locally