Tag Archives: Jupyter Notebooks
Downloading All Files in a Directory from a Jupyter Notebook Server
Problem When you are following a tutorial with exercises on a Jupyter Notebook Server, you may want to download and work with those files locally, but there is no obvious way to download all files as the Download button disappears when multiple files/folders are selected. Solution Step 1 Click on the Jupyter logo on the…
How to Create a Table of Contents in Jupyter Notebooks
Create a markdown link as usual; but set its destination as a # sign and the id you will assign to the target text, as you would in an HTML link. Then put any HTML tag around the text where your link should go, and give it an id: So yes, you can use some…
How to Create HTML and PDF Files from Jupyter Notebooks
Converting to HTML You can convert the notebook named test.ipynb to HTML using the following command: Converting to PDF You can convert the notebook named test.ipynb to PDF using the following command: If you get an error saying “Please check that pandoc is installed”, you’ll need to install it by: Hiding the Code If you…