Skip to content

Instantly share code, notes, and snippets.

@alexhiggins732
Last active April 10, 2021 00:04
Show Gist options
  • Save alexhiggins732/3443b91ec8810c91561a244c44306a7d to your computer and use it in GitHub Desktop.
Save alexhiggins732/3443b91ec8810c91561a244c44306a7d to your computer and use it in GitHub Desktop.
Jupyter Notebook Download all files
#From the notebook root directory, compress all files in the notebook to notebook.tar.gz
!tar chvfz "filename.gz" *
# Split the files in to 50 MB chunks to support downloading
!split -b 50m "filename.gz" "filename.gz.part."
# Go to file -> open and download each notebook.tar.gz.part file. Using 7Zip and click on notebook.tar.gz.aa and choose extract all.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment