Skip to content
Snippets Groups Projects

Backend

Project Structure

APPALGO-SOSE24
Backend

└── src
    |
    ├── main.py

    └── requirements.txt

Setup

  1. Install Python: go to python.org

  2. Navigate to Backend:

    cd appalgo-sose24/src
  3. Create and Activate a Virtual Environment (Optional but recommended):

    python3 -m venv venv

    In a Unix-based System run:

    source venv/bin/activate

    In Windows run:

    .venv\Scripts\activate
  4. Install the Dependencies:

    pip install -r requirements.txt

Test Setup

  1. Geh sicher, dass alle Dependencies installiert sind.

  2. Install Poetry: https://python-poetry.org/docs/