/pyconmini-osaka-2018

Demonstration for PyCon mini Osaka 2018

Primary LanguageJupyter Notebook

PyCon mini Osaka 2018 Demonstration

This project includes demonstration code for the presentation at PyCon mini Osaka 2018 at May 19th 2018.

Prerequisites

  • Docker

Start Jupyter

Build docker image as follows. Don't forget the last . (dot). This is required only once.

docker build -t pyconmini-osaka-2018 .

Then run jupyter notebook like this

docker run --rm --user root -e NB_UID=$(id -u) -p 8888:8888 -v $(pwd):/opt/local/work pyconmini-osaka-2018 

To debug docker environment, run bash as follows.

docker run --rm -ti pyconmini-osaka-2018 /bin/bash -l

References