Skip to content

Python labs for the Swiss German Videos. Partitioning is mostly congruent with the book Automate the Boring Stuff

Notifications You must be signed in to change notification settings

INSRapperswil/python-basic-labs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 19, 2022
962464d · Mar 19, 2022

History

3 Commits
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022
Mar 19, 2022

Repository files navigation

Python Basics Jupyter Notebooks

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.

Run locally with VS Code

Running notebooks in VS Code is easy and fun. Just install the Microsoft Python extension.

https://code.visualstudio.com/docs/datascience/jupyter-notebooks

Run locally with Docker

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.

Run locally in a virtual Python environment

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.

About

Python labs for the Swiss German Videos. Partitioning is mostly congruent with the book Automate the Boring Stuff

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published