Last active
April 10, 2021 00:04
-
-
Save alexhiggins732/3443b91ec8810c91561a244c44306a7d to your computer and use it in GitHub Desktop.
Jupyter Notebook Download all files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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