This repository has turned into a kind of omnibus repo for all my Python courses. I'm currently in the process of reorganizing, extending and cleaning up the content. Once this is finished, this repo will be archived and the material will be made available in the new python-courses repo.
Notebooks and code for the courses "Python for programmers" and "Python as scripting language" of the Coding Academy Munich.
Clone this repository with
$ git clone --recursive https://github.com/hoelzl/python-programmierer.git
$ cd python-programmierer
(Note the --recursive
argument!)
If you are using Anaconda, install the environment for this course with
$ conda env create --file cam-basic.yaml
If you are using pip, you can install the requirements with
$ pip install -r requirements.txt
To start the server for jupyter notebooks, enter
$ jupyter notebook
Notebooks und Code für die Kurse "Python für Programmierer" und Python als Skriptsprache der Coding Akademie München.
Verwenden Sie bitte den Befehl
$ git clone --recursive https://github.com/hoelzl/python-programmierer.git
zum Clonen des Repositories (Beachten Sie das Argument --recursive
).
Ein Anaconda Environment können Sie mit den Befehlen
$ cd python-programmierer
$ conda env create --file cam-basic.yaml
installieren.
Wenn Sie pip verwenden können Sie die Requirements mit
$ pip install -r requirements.txt
installieren.
Zum Starten des Notebook Servers verwenden Sie das Kommando
$ jupyter notebook