-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Sebastian Göttel edited this page Feb 28, 2025
·
2 revisions
To set up the RedTEI pipeline, follow these installation steps:
-
Clone the Repository:
git clone git clone https://github.com/sgoettel/RedTEI.git cd RedTEI -
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 -
Install dependencies as listed in the
requirements.txtfile.pip install --upgrade pip pip install -r requirements.txt --no-cache-dir