This commit is contained in:
2026-05-11 22:43:28 +02:00

View File

@@ -14,6 +14,14 @@ pip install django
django-admin startproject mensa-core .
```
Falls eine fish-Shell vorliegt:
```fish
python3 -m venv .venv
source .venv/bin/activate.fish
pip install django
django-admin startproject mensa-core .
```
### Schritt 1: Die Arbeitsumgebung isolieren (Virtual Environment)
Bevor du auch nur eine Zeile Code schreibst, erstelle eine eigene Umgebung. Das verhindert, dass sich verschiedene Projekte auf deinem Rechner gegenseitig stören.