Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1.12 KB

README.md

File metadata and controls

37 lines (22 loc) · 1.12 KB

Python Anleitung

Installation von Python

Aufbau einer virtuellen Umgebung

  • Unix/Mac: python3.8 -m venv .venv # .venv/.env sind Konvention, allerdings ist der Name beliebig
  • Widnows: python -m venv c:\path\to\myenv

Details finden sich hier: https://docs.python.org/3/library/venv.html

Aktivierung der virtuellen Umgebung

  • Unix/Mac: source .venv/bin/activate
  • Windows: .venv\Scripts\activate.bat

Deaktivierung der virtuellen Umgebung

  • Unix/Mac/Windows: deactivate

Installation von Paketen

Einzelpaket: pip install pandas Mehrere Pakte aus einer requirements.txt (wie hier) oder aber aus einer setup.py: pip install -r requirements.txt

Unittests mit Pytest ausführen

Unix/Mac/Windows: pytest -vv -s

SDK Workshop für Python