5

This seems to be a very simple question, but I couldn't find a way to do it. The jyputer notebook has the option to download file one by one. But my training process generates too many files, and I want to download them all at once. Is there any way to do it?

Javier Bóbeda
  • 468
  • 2
  • 10
jwyao
  • 163
  • 1
  • 4
  • Actually, I just found a solution to my own question here: https://stackoverflow.com/questions/44982313/how-to-copy-files-from-google-compute-engine-to-local-directory. – jwyao Jan 31 '20 at 23:45

1 Answers1

4

Assuming it is JupyterLab what you are using:

  1. Open a new Launcher (+ icon) and start a new terminal session.
  2. Use zip -r FILE_NAME.zip PATH/TO/OUTPUT/FOLDER/ to compress the required folder.
  3. Download the zip file as you were doing with the other ones.
Javier Bóbeda
  • 468
  • 2
  • 10