From 929e5f075b2b5ea1728eef6261f3386ac7234f00 Mon Sep 17 00:00:00 2001 From: Daniel Wehner Date: Sun, 29 Nov 2020 18:23:54 +0000 Subject: [PATCH] Fix voila install instructios (#247) --- 02_production.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/02_production.ipynb b/02_production.ipynb index 46a144d..fdd4519 100644 --- a/02_production.ipynb +++ b/02_production.ipynb @@ -1773,7 +1773,7 @@ "source": [ "#hide\n", "# !pip install voila\n", - "# !jupyter serverextension enable voila —sys-prefix" + "# !jupyter serverextension enable --sys-prefix voila " ] }, { @@ -1785,7 +1785,7 @@ "Next, install Voilà if you haven't already, by copying these lines into a notebook cell and executing it:\n", "\n", " !pip install voila\n", - " !jupyter serverextension enable voila —sys-prefix\n", + " !jupyter serverextension enable --sys-prefix voila\n", "\n", "Cells that begin with a `!` do not contain Python code, but instead contain code that is passed to your shell (bash, Windows PowerShell, etc.). If you are comfortable using the command line, which we'll discuss more later in this book, you can of course simply type these two lines (without the `!` prefix) directly into your terminal. In this case, the first line installs the `voila` library and application, and the second connects it to your existing Jupyter notebook.\n", "\n",