Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 1018 Bytes

README.md

File metadata and controls

59 lines (38 loc) · 1018 Bytes

Installation

Environment

Environment using venv

Installation und Aktivierung auf Mac/Linux:

python -m venv .venv
source .venv/bin/activate

Installation und Aktivierung auf Windows:

python -m venv .venv
.venv\Scripts\activate

Pakete installieren

Die benötigten Pakete sind in der requirements.txt Datei aufgelistet. Diese kann mit folgendem Befehl installiert werden:

pip install -r requirements.txt

Sofern die Pakete nicht installiert werden können, kann man sie auch einzeln installieren.

pip install <paketname>

Environment using uv

pip install uv

Install dependencies

uv sync

PyTorch special treatment

PyTorch is not yet fully supported for Python 3.13.

PyTorch Issue #130249

Thus, we need to install it manually.

pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu

Weitere Materialien