From c44f4fd6114317c21a523a6dc7f6c1a6132f272d Mon Sep 17 00:00:00 2001 From: FeLoe Date: Wed, 18 Oct 2023 15:50:19 -0400 Subject: [PATCH] Update chapter01.qmd At least for Python 3.10 and pip 23.3 the command for installing Jupyter notebooks changed from pip install jupyter-notebook to pip install notebook --- content/chapter01.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/chapter01.qmd b/content/chapter01.qmd index 817f68d..6ea55e6 100644 --- a/content/chapter01.qmd +++ b/content/chapter01.qmd @@ -505,7 +505,7 @@ You can install Jupyter notebook directly using pip using the following command (executed in a terminal): ``` -pip3 install jupyter-notebook +pip3 install notebook ``` Now, you can run Jupyter by executing the following command on the terminal: