Python labs for the Swiss German Videos on Youtube. Partitioning is mostly congruent with the book Automate the Boring Stuff and can be used as a supplement.
Running notebooks in VS Code is easy and fun. Just install the Microsoft Python extension.
https://code.visualstudio.com/docs/datascience/jupyter-notebooks
Just run the following script within the folder of the readme. You need to have Docker installed.
docker run -ti --rm \
-p 8888:8888 \
-e JUPYTER_ENABLE_LAB=yes \
-v "$PWD":/home/jovyan/work \
jupyter/minimal-notebook
Then, visit the website shown in the terminal output.
Just run the following script within the folder of the readme. You need to have Python3 installed.
python -m venv .venv
source .venv/bin/activate
pip install notebook
jupyter notebook
Then, visit the website shown in the terminal output.