- Unter Unix - Have a look: https://docs.python-guide.org/starting/install3/linux/
- Unter Mac - Have a look: https://docs.python-guide.org/starting/install3/osx/
- Unter Windows - Have a look: https://docs.python-guide.org/starting
- 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
- Unix/Mac:
source .venv/bin/activate
- Windows:
.venv\Scripts\activate.bat
- Unix/Mac/Windows:
deactivate
Einzelpaket: pip install pandas
Mehrere Pakte aus einer requirements.txt
(wie hier) oder aber aus einer setup.py
: pip install -r requirements.txt
Unix/Mac/Windows: pytest -vv -s
- Bau des Pythonskripts zu erstellen eines Bucket.
- Aufbau der Unittests.