From 6d6dcd45e5f09baf72019a8b7dbf1aa1a5279e7d Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 4 Jan 2018 17:35:32 -0600 Subject: [PATCH] jupyter: add page --- pages/common/jupyter.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/jupyter.md diff --git a/pages/common/jupyter.md b/pages/common/jupyter.md new file mode 100644 index 0000000000..07002fad30 --- /dev/null +++ b/pages/common/jupyter.md @@ -0,0 +1,19 @@ +# jupyter + +> Web application for scientific computing and reproducible research. + +- Start a Jupyter notebook server in the current directory: + +`jupyter notebook` + +- Start a server on a specific port: + +`jupyter notebook --port={{port}}` + +- List currently running notebook servers: + +`jupyter notebook list` + +- Stop the currently running server: + +`jupyter notebook stop`