April 2018
Beginner
238 pages
7h 13m
English
To use nbviewer with Docker, you can use Docker commands directly to load your Notebook:
$ docker pull jupyter/nbviewer$ docker run -p 8080:8080 jupyter/nbviewer
These commands are as follows:
Once executed, if you open a browser to the local machine and port 8080, you see the standard Jupyter home page. You can then add your Notebook as before.
You can run nbviewer on its own as well using the commands:
$ cd <path to notebook(s)>$ python -m nbviewer --debug --no-cache ...