diff --git a/jupyterlite_capture_notebook.ipynb b/jupyterlite_capture_notebook.ipynb index ac8dc6f..441f0a7 100644 --- a/jupyterlite_capture_notebook.ipynb +++ b/jupyterlite_capture_notebook.ipynb @@ -21,7 +21,7 @@ }, "outputs": [], "source": [ - "%pip install jupyter-capture-output==0.0.6 \n", + "%pip install jupyter-capture-output\n", "# this only works since Jupyterlite jupyterlite==0.1.0b14" ] }, @@ -73,8 +73,8 @@ "metadata": {}, "outputs": [], "source": [ - "# %%capture_code --path \"cell_content.py\" ## only in version 0.0.8\n", - "# print(\"Hello World\")" + "%%capture_code --path \"cell_content.py\"\n", + "print(\"Hello World\")" ] }, { @@ -86,7 +86,7 @@ "source": [ "from pathlib import Path\n", "Path(\"greeting.txt\").unlink() # for deleting\n", - "# Path(\"cell_content.py\").unlink()\n", + "Path(\"cell_content.py\").unlink()\n", "Path(\"dog.png\").unlink() " ] }