Skip to content

Instantly share code, notes, and snippets.

@thisisnic
Created November 25, 2020 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thisisnic/29f0acca429e4e27c5821de4f2fe46a9 to your computer and use it in GitHub Desktop.
Save thisisnic/29f0acca429e4e27c5821de4f2fe46a9 to your computer and use it in GitHub Desktop.
Saving Coursera Assignments and Supporting Files in Bulk
Instructions condensed from https://stackoverflow.com/questions/62613253/downloading-all-jupyter-notebooks-from-coursera-tar-size-exeeding-100mb
# Click on the 'jupyter' logo in any notebook for that course to be taken to the working directory that jupyter is running on.
# Click "new" (on the right) and then "terminal" and run the following commands
# navigate to parent directory
cd ..
# compress all your notebooks and other associated files
tar -czvf course1.tar.gz ./work
# move the compressed file to your 'work' directory
mv course1.tar.gz ./work
# then click 'jupyter' to go back to the working directory
# check the box next to your file and click 'download'
# unzip with 7zip or other appropriate application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment